/* ─── Landing Page – Full Snap Scrolling ─── */
:root {
    --red: #c0392b;
    --red-dark: #a93226;
    --bg: #faf5f0;
    --text: #1a1a1a;
    --text-muted: #7a7a7a;
    --text-label: #999;
    --border: #e0ddd8;
    --card-bg: #ffffff;
}

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

body.landing {
    font-family: 'Karla', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    height: 100vh;
}

/* ─── Snap scroll container ─── */
.l-scroll {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.l-screen {
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* ═══════ Hero (Screen 1) ═══════ */
.l-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 0 64px;
    max-width: 1340px;
    margin: 0 auto;
    width: 100%;
}

.l-hero-left {
    flex: 0 0 420px;
    max-width: 420px;
}

.l-logo {
    height: 28px;
    width: auto;
    margin-bottom: 32px;
    display: block;
}

.l-hero-title {
    font-family: 'EB Garamond', serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1.08;
    color: var(--text);
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

.l-hero-accent {
    color: var(--red);
    font-style: italic;
}

.l-hero-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 38px;
    max-width: 400px;
}

.l-hero-cta {
    display: flex;
    gap: 14px;
}

.l-cta-primary {
    display: inline-block;
    padding: 14px 30px;
    background: var(--red);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.15s;
}
.l-cta-primary:hover { background: var(--red-dark); }

.l-cta-secondary {
    display: inline-block;
    padding: 14px 30px;
    background: transparent;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid var(--border);
    border-radius: 3px;
    transition: all 0.15s;
}
.l-cta-secondary:hover { border-color: var(--red); color: var(--red); }

/* ─── Hero image ─── */
.l-hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 640px;
    will-change: transform;
    transition: transform 0.08s ease-out;
}

.l-hero-img {
    width: 100%;
    height: auto;
    pointer-events: none;
    user-select: none;
}

/* ─── Scroll hint ─── */
.l-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    opacity: 0.35;
    animation: lScrollPulse 2s ease-in-out infinite;
}

.l-scroll-hint span {
    width: 1px;
    height: 40px;
    background: var(--text);
    display: block;
    border-radius: 1px;
    position: relative;
}
.l-scroll-hint span::after {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--text);
    animation: lScrollDot 2s ease-in-out infinite;
}

@keyframes lScrollPulse {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 0.5; }
}
@keyframes lScrollDot {
    0%, 100% { top: 0; opacity: 0; }
    50% { top: 30px; opacity: 1; }
}

/* ═══════ Features (Screen 2) ═══════ */
.l-features {
    align-items: center;
}

.l-features-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    width: 100%;
    padding: 0 48px;
}

.l-feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 32px 28px;
    transition: box-shadow 0.2s;
}
.l-feature-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.04); }

.l-feature-icon {
    color: var(--red);
    margin-bottom: 18px;
    opacity: 0.8;
}

.l-feature-card h3 {
    font-family: 'EB Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 10px;
}

.l-feature-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── Responsive ─── */
@media (max-width: 1000px) {
    .l-hero {
        flex-direction: column;
        gap: 40px;
        padding: 60px 28px;
    }
    .l-hero-left { flex: none; max-width: 100%; }
    .l-hero-title { font-size: 40px; }
    .l-hero-right { max-width: 400px; }
    .l-features-inner { grid-template-columns: 1fr; padding: 0 28px; }
}

@media (max-width: 600px) {
    .l-hero-title { font-size: 32px; }
    .l-hero-cta { flex-direction: column; }
    .l-cta-primary, .l-cta-secondary { text-align: center; }
}
