:root {
    --lf-bg:       #0C0C0E;
    --lf-surface:  #141416;
    --lf-border:   rgba(255,255,255,0.08);
    --lf-gold:     #C9A84C;
    --lf-gold-dim: rgba(201,168,76,0.15);
    --lf-white:    #F5F5F5;
    --lf-muted:    #7A7A8A;
    --lf-nav-h:    68px;
    --lf-btm-h:    110px;
    --lf-font:     'Georgia', 'Times New Roman', serif;
    --lf-sans:     -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

body.lf-homepage {
    margin: 0;
    padding: 0;
    background: var(--lf-bg);
    color: var(--lf-white);
    font-family: var(--lf-sans);
}

/* ── WRAPPER ── */
.lf-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.lf-homepage.admin-bar .lf-wrapper {
    min-height: calc(100vh - 32px);
}

/* ── NAV ── */
.lf-nav {
    height: var(--lf-nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    border-bottom: 1px solid var(--lf-border);
    flex-shrink: 0;
}

.lf-logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.lf-logo {
    font-family: var(--lf-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lf-white);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.lf-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 32px;
}

.lf-nav-links a {
    font-size: 0.875rem;
    color: var(--lf-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.lf-nav-links a:hover { color: var(--lf-white); }

.lf-nav-cta {
    background: var(--lf-gold) !important;
    color: #0C0C0E !important;
    padding: 8px 18px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    transition: opacity 0.2s !important;
}

.lf-nav-cta:hover { opacity: 0.85 !important; color: #0C0C0E !important; }

/* ── HAMBURGER + MOBILE MENU ── */
.lf-nav-mobile-right { display: none; }

.lf-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    flex-shrink: 0;
}
.lf-hamburger:hover { background: var(--lf-surface); }
.lf-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--lf-white);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}
.lf-hamburger.lf-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lf-hamburger.lf-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.lf-hamburger.lf-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lf-mobile-menu {
    display: none;
    position: fixed;
    top: var(--lf-nav-h);
    left: 0;
    right: 0;
    background: var(--lf-bg);
    border-bottom: 1px solid var(--lf-border);
    padding: 8px 24px 20px;
    z-index: 99;
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
}
.lf-mobile-menu.lf-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.lf-mobile-menu-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.lf-mobile-menu-links li a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--lf-border);
    color: var(--lf-muted);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
}
.lf-mobile-menu-links li:last-child a { border-bottom: none; }
.lf-mobile-menu-links li a:hover { color: var(--lf-white); }

/* ── HERO ── */
.lf-hero {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 60px;
    gap: 60px;
    min-height: 0;
}

.lf-hero-left { flex: 1; max-width: 580px; }

.lf-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lf-gold);
    margin-bottom: 18px;
}

.lf-headline {
    font-family: var(--lf-font);
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--lf-white);
    margin: 0 0 22px;
    letter-spacing: -0.03em;
}

.lf-accent { color: var(--lf-gold); }

.lf-subtext {
    font-size: 0.975rem;
    line-height: 1.75;
    color: var(--lf-muted);
    margin: 0 0 32px;
    max-width: 460px;
}

.lf-inline-link {
    color: var(--lf-gold);
    text-decoration: none;
    border-bottom: 1px solid var(--lf-gold-dim);
    transition: border-color 0.2s;
}

.lf-inline-link:hover { border-color: var(--lf-gold); }

.lf-hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.lf-btn-primary {
    background: var(--lf-gold);
    color: #0C0C0E;
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.lf-btn-primary:hover { opacity: 0.85; color: #0C0C0E; }

.lf-btn-ghost {
    color: var(--lf-muted);
    font-size: 0.875rem;
    text-decoration: none;
    border-bottom: 1px solid var(--lf-border);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.lf-btn-ghost:hover { color: var(--lf-white); border-color: var(--lf-muted); }

/* ── PHOTO ── */
.lf-hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lf-photo-frame {
    position: relative;
    width: 300px;
    height: 360px;
}

.lf-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.lf-photo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--lf-surface);
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.lf-photo-placeholder svg {
    width: 44px;
    height: 44px;
    stroke: var(--lf-muted);
    opacity: 0.25;
}

.lf-photo-placeholder p {
    font-size: 0.75rem;
    color: var(--lf-muted);
    margin: 0;
    opacity: 0.4;
}

.lf-photo-badge {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lf-surface);
    border: 1px solid var(--lf-border);
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 0.72rem;
    color: var(--lf-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lf-badge-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(74,222,128,0.6);
    animation: lf-pulse 2s infinite;
}

@keyframes lf-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* ── BOTTOM STRIP ── */
.lf-bottom {
    height: var(--lf-btm-h);
    border-top: 1px solid var(--lf-border);
    display: flex;
    align-items: center;
    padding: 0 60px;
    gap: 24px;
    flex-shrink: 0;
}

/* Posts section inside bottom strip */
.lf-posts {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 24px;
    min-width: 0;
}

.lf-posts-label {
    font-size: 0.67rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--lf-muted);
    white-space: nowrap;
    margin: 0;
    padding-right: 24px;
    border-right: 1px solid var(--lf-border);
}

.lf-posts-grid {
    display: flex;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.lf-post-card {
    flex: 1;
    min-width: 0;
    background: var(--lf-surface);
    border: 1px solid var(--lf-border);
    border-radius: 8px;
    padding: 12px 14px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
    overflow: hidden;
}

.lf-post-card:hover {
    border-color: rgba(201,168,76,0.3);
    background: rgba(201,168,76,0.04);
}

.lf-post-date {
    font-size: 0.65rem;
    color: var(--lf-muted);
}

.lf-post-title {
    font-size: 0.8rem;
    color: var(--lf-white);
    margin: 0;
    font-weight: 600;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lf-post-arrow {
    position: absolute;
    right: 12px;
    bottom: 12px;
    color: var(--lf-gold);
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
}

.lf-post-card:hover .lf-post-arrow { opacity: 1; transform: translateX(3px); }

.lf-no-posts {
    font-size: 0.8rem;
    color: var(--lf-muted);
    margin: 0;
}

/* ── FOOTER ── */
.lf-footer {
    border-top: 1px solid var(--lf-border);
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.lf-footer-copy {
    font-size: 0.78rem;
    color: var(--lf-muted);
    margin: 0;
}

.lf-footer-socials {
    display: flex;
    gap: 14px;
    align-items: center;
}

.lf-footer-social {
    color: var(--lf-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    text-decoration: none;
}

.lf-footer-social:hover {
    color: var(--lf-gold);
    background: var(--lf-gold-dim);
}

.lf-footer-social svg { width: 15px; height: 15px; }

/* ── MOBILE ── */
@media (max-width: 900px) {
    .lf-wrapper { min-height: auto; }

    .lf-nav {
        padding: 0 20px;
        position: sticky;
        top: 0;
        background: var(--lf-bg);
        z-index: 100;
    }

    .lf-nav-links { display: none; }
    .lf-nav-mobile-right { display: flex; align-items: center; gap: 10px; }
    .lf-mobile-menu { display: block; }

    .lf-hero {
        flex-direction: column-reverse;
        padding: 40px 20px 50px;
        gap: 32px;
        align-items: stretch;
    }

    .lf-photo-frame {
        width: 180px;
        height: 220px;
        margin: 0 auto;
    }

    .lf-photo-badge { display: none; }

    .lf-bottom {
        flex-direction: column;
        height: auto;
        padding: 28px 20px;
        gap: 20px;
        align-items: flex-start;
    }

    .lf-posts {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        width: 100%;
    }

    .lf-posts-label { border-right: none; padding-right: 0; }

    .lf-posts-grid { flex-direction: column; width: 100%; }

    .lf-post-title { white-space: normal; }

    .lf-footer { flex-direction: column; gap: 16px; padding: 20px 20px; text-align: center; }
}
