/* ══════════════════════════════════════════════════════════
   CARE LOOKBOOK  prefix: lk-
   Editorial full-width layout, max-width 1100px
   Tokens: --serif, --sans, --charcoal, --border, --gold
══════════════════════════════════════════════════════════ */

.lk-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem 6rem;
}

/* ── Hero ─────────────────────────────────────────────── */
.lk-hero {
    text-align: center;
    padding: 5.5rem 1rem 4.5rem;
    border-bottom: 1px solid var(--border, #E5E5E5);
    margin-bottom: 5rem;
}

.lk-hero-eyebrow {
    display: block;
    font-family: var(--sans, 'Outfit', system-ui, sans-serif);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold, #C9A96E);
    margin-bottom: 1.4rem;
}

.lk-hero-title {
    font-family: var(--serif, 'Cormorant Garamond', Georgia, serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.05;
    color: var(--charcoal, #1A1A1A);
    margin: 0 0 1.75rem;
}

.lk-hero-rule {
    width: 48px;
    border: none;
    border-top: 1.5px solid var(--gold, #C9A96E);
    margin: 0 auto 1.75rem;
}

.lk-hero-sub {
    font-family: var(--sans, 'Outfit', system-ui, sans-serif);
    font-size: 0.9rem;
    color: #6b6b6b;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ── Chapter grid ─────────────────────────────────────── */
.lk-chapters { display: flex; flex-direction: column; gap: 5.5rem; }

.lk-chapter-divider {
    border: none;
    border-top: 1px solid var(--border, #E5E5E5);
    margin: 0;
}

/* ── Chapter row ──────────────────────────────────────── */
.lk-chapter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.lk-chapter--reverse {
    direction: rtl;
}
.lk-chapter--reverse > * {
    direction: ltr;
}

/* ── Chapter text ─────────────────────────────────────── */
.lk-chapter-text { display: flex; flex-direction: column; }

.lk-chapter-num {
    display: block;
    font-family: var(--serif, 'Cormorant Garamond', Georgia, serif);
    font-size: 5.5rem;
    font-weight: 700;
    color: rgba(26, 26, 26, 0.05);
    line-height: 1;
    letter-spacing: -0.04em;
    margin: 0 0 0.1rem;
    user-select: none;
}

.lk-chapter-title {
    font-family: var(--serif, 'Cormorant Garamond', Georgia, serif);
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--charcoal, #1A1A1A);
    letter-spacing: 0.01em;
    line-height: 1.15;
    margin: 0 0 1rem;
}

.lk-chapter-intro {
    font-family: var(--sans, 'Outfit', system-ui, sans-serif);
    font-size: 0.88rem;
    color: #555;
    line-height: 1.85;
    margin: 0 0 1.5rem;
}

.lk-chapter-tips {
    list-style: none;
    padding: 0 0 0 1.1rem;
    margin: 0;
    border-left: 2px solid var(--gold, #C9A96E);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lk-chapter-tips li {
    font-family: var(--sans, 'Outfit', system-ui, sans-serif);
    font-size: 0.83rem;
    color: #444;
    line-height: 1.65;
}

.lk-chapter-tips li strong {
    font-weight: 600;
    color: var(--charcoal, #1A1A1A);
}

/* ── Chapter image ────────────────────────────────────── */
.lk-chapter-image { }

.lk-img-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 4px;
    overflow: hidden;
    background: #f5f0e8;
    /* Offset shadow creates editorial depth */
    box-shadow: 8px 10px 0 0 rgba(26, 26, 26, 0.07),
                0 2px 20px rgba(26, 26, 26, 0.05);
}

.lk-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder shown when no real image is supplied */
.lk-img-frame-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(145deg, #f8f4ee 0%, #ede8e0 100%);
}

.lk-img-frame-placeholder > i {
    font-size: 3rem;
    color: var(--gold, #C9A96E);
    opacity: 0.7;
}

.lk-img-frame-placeholder > span {
    font-family: var(--serif, 'Cormorant Garamond', Georgia, serif);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: #aaa;
    text-transform: uppercase;
}

.lk-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.65) 0%, transparent 100%);
    padding: 2.5rem 1.1rem 0.85rem;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--sans, 'Outfit', system-ui, sans-serif);
    font-size: 0.7rem;
    font-style: italic;
    letter-spacing: 0.04em;
}

/* ── Bottom CTA ───────────────────────────────────────── */
.lk-cta {
    text-align: center;
    padding: 5rem 1rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border, #E5E5E5);
}

.lk-cta-title {
    font-family: var(--serif, 'Cormorant Garamond', Georgia, serif);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--charcoal, #1A1A1A);
    letter-spacing: 0.02em;
    margin: 0 0 0.75rem;
}

.lk-cta-sub {
    font-family: var(--sans, 'Outfit', system-ui, sans-serif);
    font-size: 0.85rem;
    color: #888;
    max-width: 400px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.lk-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--charcoal, #1A1A1A);
    color: var(--gold, #C9A96E);
    border: none;
    padding: 0.8rem 2.25rem;
    border-radius: 6px;
    font-family: var(--sans, 'Outfit', system-ui, sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.18s;
}

.lk-cta-btn:hover {
    background: #333;
    color: var(--gold, #C9A96E);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
    .lk-chapter { gap: 3rem; }
}

@media (max-width: 768px) {
    .lk-page { padding: 0 1rem 4rem; }
    .lk-hero { padding: 3.5rem 0.5rem 3rem; margin-bottom: 3.5rem; }
    .lk-chapters { gap: 3.5rem; }

    .lk-chapter {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .lk-chapter--reverse { direction: ltr; }

    /* Image moves above text on mobile */
    .lk-chapter-image { order: -1; }
    .lk-chapter--reverse .lk-chapter-image { order: -1; }

    .lk-img-frame { aspect-ratio: 16 / 9; }

    .lk-chapter-num { font-size: 3.5rem; }
    .lk-chapter-title { font-size: 1.75rem; }
}

@media (max-width: 480px) {
    .lk-hero-title { font-size: 2.6rem; }
    .lk-cta-title  { font-size: 1.8rem; }
    .lk-chapter-title { font-size: 1.55rem; }
}
