/* ═══════════════════════════════════════════
   LORYS — Landing pages (extends style.css)
   ═══════════════════════════════════════════ */

.lp-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(2, 26, 46, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(203, 179, 150, 0.12);
}
.lp-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.lp-nav-logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}
.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}
.lp-nav-tel {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: var(--white-70);
    white-space: nowrap;
    transition: color 0.25s;
}
.lp-nav-tel:hover { color: var(--white); }

.lp-hero {
    background: var(--navy);
    color: var(--white);
    padding: clamp(140px, 18vw, 190px) 0 clamp(70px, 9vw, 110px);
}
.lp-hero .section-title {
    color: var(--white);
    font-size: clamp(2.4rem, 5.5vw, 4.4rem);
    max-width: 15em;
}
.lp-hero .section-title em { color: var(--champagne); }
.lp-hero-desc {
    font-size: 1.08rem;
    font-weight: 300;
    color: var(--white-70);
    max-width: 38em;
    line-height: 1.75;
    margin-bottom: 38px;
}
.lp-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.lp-routes {
    background: var(--night);
    padding: clamp(50px, 7vw, 80px) 0;
}
.lp-routes .board { border-top: 1px solid var(--line-light); }
.lp-routes-note {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white-45);
    margin-top: 20px;
}

.lp-body { padding: clamp(80px, 10vw, 120px) 0; }
.lp-body .section-title { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.lp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 6vw, 90px);
    align-items: center;
    margin-bottom: clamp(60px, 8vw, 100px);
}
.lp-grid:last-child { margin-bottom: 0; }
.lp-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.lp-prose p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--ink-soft);
    line-height: 1.8;
    margin-bottom: 16px;
    max-width: 38em;
}
.lp-prose p strong { font-weight: 600; color: var(--ink); }

.lp-steps {
    counter-reset: step;
    border-top: 1px solid var(--line);
    max-width: 760px;
}
.lp-step {
    display: flex;
    gap: 26px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}
.lp-step::before {
    counter-increment: step;
    content: "0" counter(step);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--bronze);
    padding-top: 5px;
}
.lp-step h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 4px;
}
.lp-step p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ink-soft);
    line-height: 1.7;
}

.lp-faq { max-width: 760px; border-top: 1px solid var(--line); }
.lp-faq details { border-bottom: 1px solid var(--line); }
.lp-faq summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 0;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--navy);
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
    content: "+";
    font-family: var(--font-mono);
    color: var(--bronze);
    flex-shrink: 0;
}
.lp-faq details[open] summary::after { content: "–"; }
.lp-faq details p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--ink-soft);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 40em;
}

.lp-cta {
    background: var(--navy);
    color: var(--white);
    padding: clamp(70px, 9vw, 100px) 0;
    text-align: center;
}
.lp-cta .section-title { color: var(--white); margin: 0 auto 16px; }
.lp-cta .section-title em { color: var(--champagne); }
.lp-cta p {
    font-weight: 300;
    color: var(--white-70);
    max-width: 34em;
    margin: 0 auto 34px;
}
.lp-cta .lp-hero-actions { justify-content: center; }

.lp-footer {
    background: var(--night);
    padding: 34px 0;
}
.lp-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.lp-footer p, .lp-footer a {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    color: var(--white-45);
}
.lp-footer a { transition: color 0.25s; }
.lp-footer a:hover { color: var(--champagne); }
.lp-footer-links { display: flex; flex-wrap: wrap; gap: 6px 16px; }

@media (max-width: 860px) {
    .lp-grid { grid-template-columns: 1fr; }
    .lp-grid img { order: -1; }
    .lp-nav-tel { display: none; }
}
