/* marketing.css — shared styles for the public SEO landing pages
   (/wine-cellar-app, /wine-inventory-software, /wine-collection-tracker,
   /faq, /da/vinkaelder-app). Tokens only (see base.css / DESIGN.md).
   Restrained on purpose: display serif for the H1 only, Inter everywhere else. */

.mk {
    max-width: 940px;
    margin: 0 auto;
    padding: 1.5rem 2rem 4rem;
    color: var(--color-dark-text);
    font-family: var(--font-body);
}

.mk-crumbs {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin: 0 0 1.5rem;
}
.mk-crumbs a { color: inherit; text-decoration: none; }
.mk-crumbs a:hover { text-decoration: underline; }

/* ── Header (matches the app's .page-header / .page-title scale) ── */
.mk-header { max-width: 60ch; margin-bottom: 2.25rem; }

.mk-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0.75rem;
}

.mk-h1 {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 0.9rem;
}

.mk-sub {
    font-size: 1.02rem;
    line-height: 1.65;
    margin: 0 0 1.5rem;
    color: var(--color-muted);
}

.mk-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

/* ── Sections ── */
.mk-section { padding: 1.5rem 0; }

.mk-section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 1rem;
}

.mk-h2 {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 0.6rem;
}

.mk-lead {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 64ch;
    color: var(--color-muted);
    margin: 0;
}

/* ── Benefit cards (app card recipe: radius 14, subtle shadow) ── */
.mk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.9rem;
}

.mk-card {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background: var(--color-card-bg);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 1.2rem 1.2rem 1.3rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.mk-card-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.mk-card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-muted);
}

/* ── FAQ ── */
.mk-faq { max-width: 720px; }

.mk-faq-item {
    padding: 1.05rem 0;
    border-top: 1px solid rgba(0,0,0,0.07);
}
.mk-faq-item:first-of-type { border-top: none; padding-top: 0.25rem; }

.mk-faq-q {
    font-size: 1.02rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
}

.mk-faq-a {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--color-muted);
    margin: 0;
}

/* ── Closing CTA ── */
.mk-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    background: var(--color-brand);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    margin-top: 1.25rem;
}
.mk-cta-text { max-width: 56ch; }
.mk-cta-title { font-size: 1.2rem; font-weight: 700; color: var(--color-light-text); }
.mk-cta-sub { font-size: 0.9rem; line-height: 1.55; color: rgba(255,255,255,0.72); margin: 0.3rem 0 0; }

@media (max-width: 720px) {
    .mk { padding: 1.25rem 1.25rem 3rem; }
    .mk-h1 { font-size: 1.8rem; }
    .mk-cta { padding: 1.4rem 1.5rem; }
}
