/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.lp-hero {
    background: #141824;
    position: relative;
    overflow: hidden;
    padding: 90px 0 70px;
}
.lp-hero::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 80px solid rgba(145,118,90,.05);
    pointer-events: none;
}
.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(145,118,90,.07) 0%, transparent 55%);
}
.lp-hero-inner { position: relative; z-index: 1; }

.lp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #91765a;
    margin-bottom: 22px;
}
.lp-breadcrumb a { color: #91765a; text-decoration: none; }
.lp-breadcrumb a:hover { color: #b59a6e; }
.lp-breadcrumb i { font-size: 9px; color: #3a3f52; }

.lp-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(145,118,90,.12);
    border: 1px solid rgba(145,118,90,.25);
    color: #91765a;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 22px;
}
.lp-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #91765a;
    flex-shrink: 0;
}

.lp-h1 {
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    color: #e8e2da;
    line-height: 1.2;
    margin: 0 0 28px;
    max-width: 760px;
}

.lp-intro {
    font-size: 15px;
    color: #a09080;
    line-height: 1.9;
    max-width: 680px;
    padding: 18px 20px;
    border-left: 3px solid #91765a;
    background: rgba(145,118,90,.05);
    border-radius: 0 4px 4px 0;
    margin-bottom: 36px;
}

.lp-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.lp-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    color: #888;
    font-size: 12px;
    padding: 7px 14px;
    border-radius: 4px;
}
.lp-pill i { color: #91765a; font-size: 12px; }

/* ═══════════════════════════════════
   BODY CONTENT — two column
═══════════════════════════════════ */
.lp-body-section { padding: 80px 0; background: #fff; }
.lp-body-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    align-items: start;
}
.lp-body-main { min-width: 0; }
.lp-body-main p  { font-size: 15px; color: #555; line-height: 1.9; margin-bottom: 20px; }
.lp-body-main h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.55rem;
    color: #141824;
    margin: 42px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0ece6;
    position: relative;
}
.lp-body-main h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #91765a;
}
.lp-body-main h3 { font-size: 1.05rem; font-weight: 700; color: #141824; margin: 28px 0 10px; }
.lp-body-main ul, .lp-body-main ol { margin: 0 0 20px; padding-left: 0; list-style: none; }
.lp-body-main ul li, .lp-body-main ol li {
    position: relative;
    padding: 8px 0 8px 22px;
    font-size: 14.5px;
    color: #555;
    line-height: 1.7;
    border-bottom: 1px solid #f5f3f0;
}
.lp-body-main ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #91765a;
}
.lp-body-main ol { counter-reset: li; }
.lp-body-main ol li { counter-increment: li; }
.lp-body-main ol li::before {
    content: counter(li);
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: #141824;
    color: #91765a;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.lp-body-main strong { color: #141824; font-weight: 600; }
.lp-body-main a { color: #91765a; }

/* Sidebar */
.lp-sidebar { min-width: 0; position: sticky; top: 90px; }
.lp-sidebar-card {
    background: #141824;
    border-radius: 8px;
    padding: 28px 24px;
    color: #e8e2da;
    margin-bottom: 16px;
}
.lp-sidebar-card-label {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #91765a;
    margin-bottom: 14px;
    display: block;
}
.lp-sidebar-card h4 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.2rem;
    color: #e8e2da;
    margin: 0 0 16px;
    line-height: 1.3;
}
.lp-sidebar-list { list-style: none; padding: 0; margin: 0 0 20px; }
.lp-sidebar-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: #a09080;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.lp-sidebar-list li:last-child { border-bottom: none; }
.lp-sidebar-list li i { color: #91765a; font-size: 12px; margin-top: 2px; flex-shrink: 0; }
.lp-sidebar-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(145,118,90,.1);
    border: 1px solid rgba(145,118,90,.2);
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 12px;
    text-decoration: none;
}
.lp-sidebar-phone i { color: #91765a; font-size: 16px; flex-shrink: 0; }
.lp-sidebar-phone span { font-size: 14px; color: #e8e2da; font-weight: 600; }
.lp-sidebar-phone small { display: block; font-size: 11px; color: #888; }
.lp-sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #91765a;
    color: #fff;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 13px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: background .2s;
    width: 100%;
    font-weight: 600;
}
.lp-sidebar-btn:hover { background: #b59a6e; color: #fff; }

/* Highlight card */
.lp-highlight-card {
    background: #f7f5f2;
    border: 1px solid #e8e2d8;
    border-radius: 8px;
    padding: 22px;
}
.lp-highlight-card h5 {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #91765a;
    margin: 0 0 14px;
}
.lp-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid #ede8e2;
    font-size: 13px;
    color: #444;
}
.lp-highlight-item:last-child { border-bottom: none; }
.lp-highlight-item i { color: #91765a; font-size: 13px; width: 16px; text-align: center; flex-shrink: 0; }

/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */
.lp-faq-section { background: #fff; padding: 80px 0; border-top: 1px solid #f0ece6; }
.lp-faq-head { margin-bottom: 50px; }
.lp-faq-head .lp-tag { background: rgba(145,118,90,.1); margin-bottom: 16px; }
.lp-faq-head h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    color: #141824;
    margin: 0 0 10px;
}
.lp-faq-head p { font-size: 14px; color: #888; margin: 0; }
.lp-faq-wrap { max-width: 780px; }
.lp-faq-item {
    border-bottom: 1px solid #ede8e2;
    overflow: hidden;
}
.lp-faq-item:first-child { border-top: 1px solid #ede8e2; }
.lp-faq-q {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 0;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}
.lp-faq-n {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(145,118,90,.1);
    border: 1px solid rgba(145,118,90,.3);
    color: #91765a;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, color .2s;
}
.lp-faq-item.open .lp-faq-n { background: #91765a; color: #fff; border-color: #91765a; }
.lp-faq-q-text {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #141824;
    line-height: 1.4;
    transition: color .2s;
}
.lp-faq-item.open .lp-faq-q-text,
.lp-faq-q:hover .lp-faq-q-text { color: #91765a; }
.lp-faq-toggle {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 12px;
    transition: transform .3s, color .2s;
    flex-shrink: 0;
}
.lp-faq-item.open .lp-faq-toggle { transform: rotate(45deg); color: #91765a; }
.lp-faq-a { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.lp-faq-a-inner {
    padding: 0 50px 24px;
    font-size: 14px;
    color: #666;
    line-height: 1.9;
}
.lp-faq-item.open .lp-faq-a { max-height: 600px; }

/* ═══════════════════════════════════
   CTA
═══════════════════════════════════ */
.lp-cta {
    background: #f7f5f2;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.lp-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, #91765a, #b59a6e, #91765a);
}
.lp-cta-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #91765a;
    margin-bottom: 14px;
    display: block;
}
.lp-cta h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    color: #141824;
    margin: 0 0 14px;
}
.lp-cta p {
    font-size: 15px;
    color: #888;
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.lp-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.lp-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #141824;
    color: #91765a;
    border: 1px solid #141824;
    padding: 14px 32px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    transition: all .2s;
    border-radius: 3px;
}
.lp-cta-btn-primary:hover { background: #91765a; border-color: #91765a; color: #fff; }
.lp-cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #141824;
    border: 1px solid #141824;
    padding: 14px 32px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    transition: all .2s;
    border-radius: 3px;
}
.lp-cta-btn-ghost:hover { background: #141824; color: #fff; }
.lp-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #888;
}
.lp-cta-phone i { color: #91765a; }
.lp-cta-phone a { color: #141824; font-weight: 700; font-size: 16px; text-decoration: none; }
.lp-cta-phone a:hover { color: #91765a; }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 900px) {
    .lp-body-grid { grid-template-columns: 1fr; }
    .lp-sidebar { position: static; }
    .lp-faq-a-inner { padding-left: 20px; }
}
@media (max-width: 600px) {
    .lp-hero { padding: 60px 0 50px; }
    .lp-body-section { padding: 50px 0; }
    .lp-faq-section { padding: 50px 0; }
    .lp-cta { padding: 50px 0; }
}
