/* ===== LANDING PAGE STYLES (index.html) ===== */

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 8rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(184,149,106,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(196,134,122,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.hero-content {
    max-width: 1200px; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
    position: relative;
}
.hero-text { max-width: 540px; }
.hero-eyebrow {
    font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before {
    content: ''; display: block;
    width: 2rem; height: 1px; background: var(--gold);
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--warm-black);
    margin-bottom: 1.75rem;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold-dark);
}
.hero-sub {
    font-size: 1.1rem; line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 460px;
}
.hero-cta {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 1.1rem 2.2rem;
    background: var(--warm-black);
    color: var(--warm-cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem; font-weight: 500;
    border: none; border-radius: 100px;
    cursor: pointer; text-decoration: none;
    transition: all 0.4s ease;
    letter-spacing: 0.01em;
}
.hero-cta:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(150,116,77,0.25); }
.hero-cta svg { transition: transform 0.3s ease; }
.hero-cta:hover svg { transform: translateX(4px); }
.hero-objections {
    display: flex; align-items: center; gap: 1.25rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}
.hero-objections span {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex; align-items: center; gap: 0.4rem;
    white-space: nowrap;
}
.hero-objections span::before {
    content: '\2713';
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
}
.hero-guarantee {
    margin-top: 0.75rem;
    font-size: 0.82rem; color: var(--text-light);
    display: flex; align-items: center; gap: 0.4rem;
}

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex; justify-content: center; align-items: center;
}
.book-mockup {
    width: 100%; max-width: 480px;
    aspect-ratio: 1/1;
    background: linear-gradient(145deg, #e8ddd2 0%, #d4c8ba 50%, #c9bba9 100%);
    border-radius: 8px;
    box-shadow:
      20px 20px 60px rgba(44,36,32,0.15),
     -5px -5px 20px rgba(255,255,255,0.6),
      inset 0 0 0 1px rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
    transform: perspective(800px) rotateY(-3deg) rotateX(1deg);
    transition: transform 0.6s ease;
}
.book-mockup:hover {
    transform: perspective(800px) rotateY(0deg) rotateX(0deg);
}
.book-mockup-inner {
    position: absolute; inset: 0;
    border-radius: 4px;
    overflow: hidden;
}
.book-slideshow {
    position: relative;
    width: 100%; height: 100%;
}
.book-slide {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; height: 90%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.book-slide.active {
    opacity: 1;
}
.book-float-badge {
    position: absolute;
    bottom: -1rem; right: -1rem;
    background: white;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 8px 30px rgba(44,36,32,0.1);
    font-size: 0.82rem;
    color: var(--text-secondary);
    display: flex; align-items: center; gap: 0.5rem;
    animation: float 4s ease-in-out infinite;
}
.book-float-badge strong { color: var(--warm-black); }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===== EMOTIONAL TRUTH SECTION ===== */
.truth {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--warm-black);
    color: var(--warm-cream);
    position: relative;
}
.truth::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(184,149,106,0.1) 0%, transparent 60%);
    pointer-events: none;
}
.truth-inner {
    max-width: 680px; margin: 0 auto;
    position: relative;
}
.truth h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(248,243,237,0.85);
    margin-bottom: 2rem;
}
.truth h2 strong {
    color: var(--gold-light);
    font-weight: 500;
}
.truth p {
    font-size: 1.05rem; line-height: 1.8;
    color: rgba(248,243,237,0.6);
    max-width: 540px; margin: 0 auto;
}
.truth-cta {
    display: inline-flex; align-items: center; gap: 0.75rem;
    margin-top: 2.5rem;
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--warm-black);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem; font-weight: 500;
    border: none; border-radius: 100px;
    cursor: pointer; text-decoration: none;
    transition: all 0.4s ease;
    letter-spacing: 0.01em;
}
.truth-cta:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(184,149,106,0.3); }
.truth-cta svg { transition: transform 0.3s ease; }
.truth-cta:hover svg { transform: translateX(4px); }

/* ===== BEFORE/AFTER TRANSFORMATION ===== */
.transform {
    padding: 7rem 2rem;
    max-width: 1100px; margin: 0 auto;
}
.transform-header {
    text-align: center; margin-bottom: 4rem;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--warm-black);
}
.transform-grid {
    display: grid; grid-template-columns: 1fr 60px 1fr;
    gap: 2rem; align-items: center;
    margin-bottom: 3rem;
}
.transform-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44,36,32,0.06);
}
.transform-img {
    width: 100%; aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e0d8cf, #ccc4b8);
}
.transform-slide {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.transform-slide.active {
    opacity: 1;
}
.transform-arrow {
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
}
.transform-caption {
    padding: 1.25rem 1.5rem;
    font-size: 0.88rem; color: var(--text-secondary);
    border-top: 1px solid var(--border-soft);
}
.transform-caption strong { color: var(--text-primary); }

/* ===== HOW IT WORKS ===== */
.process {
    padding: 7rem 2rem;
    background: var(--bg-warm);
}
.process-inner {
    max-width: 1000px; margin: 0 auto;
}
.process-header {
    text-align: center; margin-bottom: 4.5rem;
}
.process-sub {
    font-size: 1.05rem; color: var(--text-secondary);
    max-width: 500px; margin: 1rem auto 0;
    line-height: 1.6;
}
.steps {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}
.step {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(44,36,32,0.04);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(44,36,32,0.08);
}
.step-number {
    width: 3rem; height: 3rem;
    background: var(--warm-black);
    color: var(--warm-cream);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 600;
    margin: 0 auto 1.5rem;
}
.step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--warm-black);
}
.step p {
    font-size: 0.92rem; line-height: 1.65;
    color: var(--text-secondary);
}

/* ===== PRODUCT SPREAD ===== */
.spread {
    padding: 7rem 2rem;
    max-width: 1200px; margin: 0 auto;
}
.spread-header {
    text-align: center; margin-bottom: 4rem;
}
.spread-sub {
    font-size: 1.05rem; color: var(--text-secondary);
    max-width: 560px; margin: 1rem auto 0; line-height: 1.65;
}
.spread-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.spread-page {
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(44,36,32,0.06);
}
.spread-page img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.spread-page:hover { transform: scale(1.03); }
.spread-note {
    text-align: center; margin-top: 1.5rem;
    font-size: 0.85rem; color: var(--text-light);
    font-style: italic;
}

/* ===== SOCIAL PROOF ===== */
.proof {
    padding: 7rem 2rem;
    background: var(--bg-warm);
}
.proof-inner {
    max-width: 1000px; margin: 0 auto;
}
.proof-header { text-align: center; margin-bottom: 4rem; }
.proof-rating {
    display: inline-flex; align-items: center; gap: 0.5rem;
    margin-top: 1.25rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
    background: white;
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    box-shadow: 0 2px 12px rgba(44,36,32,0.06);
}
.proof-rating strong { color: var(--warm-black); }
.testimonials {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.testimonial {
    background: white;
    border-radius: 16px;
    padding: 2.25rem;
    box-shadow: 0 2px 15px rgba(44,36,32,0.04);
    display: flex; flex-direction: column;
}
.testimonial-stars {
    color: var(--gold); font-size: 0.9rem;
    margin-bottom: 1rem; letter-spacing: 0.1em;
}
.testimonial-text {
    font-size: 0.95rem; line-height: 1.7;
    color: var(--text-secondary);
    flex: 1;
    margin-bottom: 1.5rem;
}
.testimonial-text em {
    font-style: normal; font-weight: 500;
    color: var(--text-primary);
}
.testimonial-author {
    font-size: 0.82rem; color: var(--text-light);
    padding-top: 1rem;
    border-top: 1px solid var(--border-soft);
}
.testimonial-author strong {
    color: var(--text-primary); display: block;
    font-size: 0.88rem; margin-bottom: 0.15rem;
}

/* ===== PRICING ===== */
.pricing {
    padding: 7rem 2rem;
    max-width: 1100px; margin: 0 auto;
}
.pricing-header {
    text-align: center; margin-bottom: 1.5rem;
}
.pricing-philosophy {
    text-align: center;
    max-width: 580px; margin: 0 auto 4rem;
    font-size: 1.05rem; line-height: 1.7;
    color: var(--text-secondary);
}
.tiers {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}
.tier {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 20px rgba(44,36,32,0.05);
    border: 1.5px solid var(--border-soft);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(44,36,32,0.1);
}
.tier.featured {
    border-color: var(--gold);
    box-shadow: 0 4px 30px rgba(184,149,106,0.15);
    transform: scale(1.03);
}
.tier.featured:hover {
    transform: scale(1.03) translateY(-4px);
}
.tier-badge {
    position: absolute; top: -0.75rem; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: white;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
}
.tier-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 600;
    color: var(--warm-black);
    margin-bottom: 0.25rem;
}
.tier-intent {
    font-size: 0.85rem; color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}
.tier-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem; font-weight: 600;
    color: var(--warm-black);
    margin-bottom: 0.25rem;
}
.tier-price span {
    font-size: 1rem; font-weight: 400;
    color: var(--text-light);
    vertical-align: middle;
}
.tier-per {
    font-size: 0.82rem; color: var(--text-light);
    margin-bottom: 1.75rem;
}
.tier-divider {
    width: 100%; height: 1px;
    background: var(--border-soft);
    margin-bottom: 1.75rem;
}
.tier-features {
    list-style: none;
    margin-bottom: 2rem;
}
.tier-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.45rem 0;
    display: flex; align-items: flex-start; gap: 0.6rem;
}
.tier-features li::before {
    content: '\2713';
    color: var(--gold);
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 1px;
}
.tier-cta {
    display: block; width: 100%;
    padding: 1rem;
    text-align: center;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem; font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}
.tier-cta.primary {
    background: var(--warm-black);
    color: var(--warm-cream);
}
.tier-cta.primary:hover { background: var(--gold-dark); }
.tier-cta.secondary {
    background: transparent;
    color: var(--warm-black);
    border: 1.5px solid var(--border-soft);
}
.tier-cta.secondary:hover { border-color: var(--gold); color: var(--gold-dark); }
.tier-guarantee {
    text-align: center;
    font-size: 0.78rem; color: var(--text-light);
    margin-top: 1rem;
    display: flex; align-items: center; justify-content: center; gap: 0.35rem;
}
.pricing-guarantee {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-warm);
    border-radius: 12px;
    border: 1px solid var(--border-soft);
}
.pricing-guarantee h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 500;
    margin-bottom: 0.5rem;
}
.pricing-guarantee p {
    font-size: 0.9rem; color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== MULTI-PET NOTE ===== */
.multi-pet {
    text-align: center;
    padding: 0 2rem 5rem;
    max-width: 600px; margin: 0 auto;
}
.multi-pet p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.multi-pet a {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ===== FAQ ===== */
.faq {
    padding: 7rem 2rem;
    background: var(--bg-warm);
}
.faq-inner {
    max-width: 700px; margin: 0 auto;
}
.faq-header { text-align: center; margin-bottom: 3.5rem; }
.faq-item {
    border-bottom: 1px solid var(--border-soft);
    padding: 1.5rem 0;
}
.faq-q {
    font-size: 1rem; font-weight: 500;
    color: var(--warm-black);
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}
.faq-q::after {
    content: '+'; font-size: 1.3rem;
    color: var(--gold); flex-shrink: 0;
    transition: transform 0.3s ease;
    font-weight: 300;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a {
    max-height: 300px;
    padding-top: 1rem;
}
.faq-a p {
    font-size: 0.92rem; line-height: 1.7;
    color: var(--text-secondary);
}

/* ===== FINAL CTA ===== */
.final {
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(184,149,106,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.final-inner {
    max-width: 620px; margin: 0 auto;
    position: relative;
}
.final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 500;
    line-height: 1.3;
    color: var(--warm-black);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.final p {
    font-size: 1.05rem; line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 480px; margin-left: auto; margin-right: auto;
}
.final-cta {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 1.15rem 2.5rem;
    background: var(--warm-black);
    color: var(--warm-cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem; font-weight: 500;
    border: none; border-radius: 100px;
    cursor: pointer; text-decoration: none;
    transition: all 0.4s ease;
}
.final-cta:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(150,116,77,0.25); }
.final-details {
    margin-top: 1.25rem;
    font-size: 0.82rem; color: var(--text-light);
    line-height: 1.6;
}
.final-ps {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-soft);
    font-size: 0.92rem; line-height: 1.7;
    color: var(--text-secondary);
    text-align: left;
    max-width: 520px; margin-left: auto; margin-right: auto;
}
.final-ps strong { color: var(--text-primary); }

/* ===== EMAIL CAPTURE ===== */
.email-capture {
    padding: 5rem 2rem;
    background: var(--warm-black);
    text-align: center;
    position: relative;
}
.email-capture::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(184,149,106,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.email-capture-inner {
    max-width: 520px; margin: 0 auto;
    position: relative;
}
.email-capture h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 500;
    color: var(--warm-cream);
    margin-bottom: 0.75rem;
}
.email-capture p {
    font-size: 0.95rem; line-height: 1.6;
    color: rgba(248,243,237,0.6);
    margin-bottom: 2rem;
}
.email-form {
    display: flex; gap: 0.75rem;
    max-width: 440px; margin: 0 auto;
}
.email-form input {
    flex: 1;
    padding: 0.9rem 1.25rem;
    border: 1.5px solid rgba(184,149,106,0.3);
    border-radius: 100px;
    background: rgba(255,255,255,0.08);
    color: var(--warm-cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.3s ease;
}
.email-form input::placeholder { color: rgba(248,243,237,0.35); }
.email-form input:focus { border-color: var(--gold); }
.email-form button {
    padding: 0.9rem 1.75rem;
    background: var(--gold);
    color: var(--warm-black);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem; font-weight: 600;
    border: none; border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.email-form button:hover { background: var(--gold-light); transform: translateY(-1px); }
.email-privacy {
    font-size: 0.75rem;
    color: rgba(248,243,237,0.35);
    margin-top: 0.75rem;
}
.email-success {
    display: none;
    color: var(--gold-light);
    font-size: 1rem;
    padding: 1rem;
}

/* ===== PAYMENT TRUST ===== */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-soft);
}
.trust-badge {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.8rem; color: var(--text-light);
}

/* ===== LANDING RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .hero-text { max-width: 100%; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-objections { justify-content: center; }
    .hero-guarantee { justify-content: center; }
    .hero-visual { order: -1; }
    .book-mockup { max-width: 320px; }
    .steps { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .testimonials { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .tiers { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .tier.featured { transform: none; }
    .tier.featured:hover { transform: translateY(-4px); }
    .transform-grid { grid-template-columns: 1fr; }
    .transform-arrow { transform: rotate(90deg); }
    .spread-gallery { grid-template-columns: repeat(2, 1fr); }
    .hero { min-height: auto; padding: 5.5rem 1.5rem 3rem; }
}

@media (max-width: 500px) {
    .email-form { flex-direction: column; }
    .email-form button { width: 100%; }
}

/* Landing-specific reduced motion */
@media (prefers-reduced-motion: reduce) {
    .book-float-badge { animation: none; }
}
