:root {
    --l-bg: #fbf8f3;
    --l-ink: #2a241c;
    --l-muted: #6f6558;
    --l-gold: #b8892f;
    --l-gold-deep: #8f6a20;
    --l-card: #ffffff;
    --l-border: #ece4d6;
}

body.landing {
    background: var(--l-bg);
    color: var(--l-ink);
    font-family: 'Jost', 'Poppins', sans-serif;
}

.l-eyebrow {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--l-gold-deep);
    margin-bottom: .75rem;
}

/* Navbar */
.l-navbar {
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(251, 248, 243, .85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--l-border);
}

.l-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--l-ink) !important;
}

.l-brand span {
    color: var(--l-gold);
}

.l-navbar .nav-link {
    color: var(--l-ink);
    font-weight: 500;
    padding: .5rem 1rem;
}

.l-btn-nav {
    background: var(--l-ink);
    color: #fff !important;
    border-radius: 100px;
    padding: .5rem 1.25rem;
    font-weight: 500;
    font-size: .9rem;
}

/* Hero */
.l-hero {
    position: relative;
    padding: 5rem 0 4.5rem;
    overflow: hidden;
    text-align: center;
}

.l-hero-shape {
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 480px;
    background: radial-gradient(60% 60% at 50% 30%, rgba(184, 137, 47, .16), transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.l-hero .container {
    position: relative;
    z-index: 1;
}

.l-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(1.9rem, 5.5vw, 3.25rem);
    line-height: 1.2;
    margin-bottom: 1.1rem;
}

.l-subtitle {
    color: var(--l-muted);
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    max-width: 44rem;
    margin: 0 auto 2rem;
}

.l-hero-actions {
    display: flex;
    justify-content: center;
    gap: .75rem;
    flex-wrap: wrap;
}

.l-btn-primary {
    background: var(--l-gold);
    color: #fff;
    border-radius: 100px;
    padding: .75rem 1.75rem;
    font-weight: 600;
    box-shadow: 0 10px 24px -10px rgba(184, 137, 47, .55);
}

.l-btn-primary:hover {
    background: var(--l-gold-deep);
    color: #fff;
}

.l-btn-outline {
    border: 1.5px solid var(--l-ink);
    color: var(--l-ink);
    border-radius: 100px;
    padding: .75rem 1.75rem;
    font-weight: 600;
}

.l-btn-outline:hover {
    background: var(--l-ink);
    color: #fff;
}

/* Features */
.l-features {
    padding: 3rem 0;
}

.l-section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    margin-bottom: .5rem;
}

.l-section-subtitle {
    color: var(--l-muted);
}

.l-feature-card {
    background: var(--l-card);
    border: 1px solid var(--l-border);
    border-radius: 18px;
    padding: 1.5rem 1.1rem;
    height: 100%;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.l-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px -18px rgba(42, 36, 28, .25);
}

.l-feature-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto .9rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 137, 47, .12);
    color: var(--l-gold-deep);
    font-size: 1.3rem;
}

.l-feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .4rem;
}

.l-feature-card p {
    font-size: .85rem;
    color: var(--l-muted);
    margin: 0;
}

/* Showcase */
.l-showcase {
    padding: 3rem 0 4rem;
}

.l-empty {
    text-align: center;
    color: var(--l-muted);
    padding: 3rem 1rem;
    border: 1.5px dashed var(--l-border);
    border-radius: 18px;
}

.l-empty i {
    font-size: 1.75rem;
    color: var(--l-gold);
    margin-bottom: .75rem;
    display: block;
}

.l-card {
    display: block;
    background: var(--l-card);
    border: 1px solid var(--l-border);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    color: var(--l-ink);
    transition: transform .25s ease, box-shadow .25s ease;
}

.l-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px -20px rgba(42, 36, 28, .3);
    color: var(--l-ink);
}

.l-card-photo {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.l-card-badge {
    position: absolute;
    top: .85rem;
    left: .85rem;
    background: rgba(255, 255, 255, .92);
    color: var(--l-gold-deep);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .04em;
    padding: .3rem .7rem;
    border-radius: 100px;
}

.l-card-body {
    padding: 1.15rem 1.25rem 1.35rem;
}

.l-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .35rem;
}

.l-card-body p {
    color: var(--l-muted);
    font-size: .9rem;
    margin-bottom: .75rem;
}

.l-card-cta {
    font-weight: 600;
    color: var(--l-gold-deep);
    font-size: .9rem;
}

/* Footer */
.l-footer {
    background: var(--l-ink);
    color: #f2ece0;
    padding: 3rem 0 2rem;
}

.l-footer-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.6rem;
}

.l-footer-brand span {
    color: var(--l-gold);
}

.l-footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.l-footer-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    color: #f2ece0;
}

.l-footer-links a:hover {
    background: var(--l-gold);
    color: #1a1712;
}

.l-footer-copy {
    font-size: .8rem;
    opacity: .6;
    margin: 0;
}

@media (max-width: 767px) {
    .l-navbar .navbar-collapse {
        padding-top: .75rem;
    }

    .l-navbar .nav-link {
        padding: .6rem 0;
    }

    .l-btn-nav {
        display: inline-flex;
        margin-top: .5rem;
    }
}
