/* MK FAQ - accessible accordion. Black and white only - no accent colour.
 * Type scale matches the mk-contact-form widget (2.5rem Playfair heading,
 * ~1.1rem questions, 1rem answers) so adjacent sections read consistently. */

.mk-faq {
    --faq-text: #1c1a17;
    --faq-muted: #4a463f;
    --faq-border: #e8e3d9;
    --faq-bg: #ffffff;

    padding: 48px 0 64px;
    background: var(--faq-bg);
    color: var(--faq-text);
}

.mk-faq--dark {
    --faq-text: #ffffff;
    --faq-muted: #cccccc;
    --faq-border: rgba(255, 255, 255, 0.14);
    --faq-bg: #0f0f0f;
}

.mk-faq__header {
    max-width: 860px;
    margin: 0 auto 28px;
    padding: 0 32px;
    text-align: center;
}

.mk-faq__header h2 {
    margin: 0 0 12px;
    font-family: 'Playfair Display', 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.15;
    color: var(--faq-text);
}

.mk-faq__header p {
    margin: 0;
    color: var(--faq-muted);
    font-size: 1.1rem;
}

.mk-faq__list {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 32px;
    border-top: 1px solid var(--faq-border);
}

.mk-faq__item {
    border-bottom: 1px solid var(--faq-border);
}

.mk-faq__question {
    margin: 0;
}

.mk-faq__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 18px 4px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--faq-text);
    transition: opacity 0.25s ease;
}

.mk-faq__toggle:hover .mk-faq__question-text {
    opacity: 0.7;
}

.mk-faq__toggle:focus-visible {
    outline: 2px solid var(--faq-text);
    outline-offset: 2px;
}

/* Plus/minus indicator drawn with two bars */
.mk-faq__icon {
    flex: none;
    position: relative;
    width: 14px;
    height: 14px;
}

.mk-faq__icon::before,
.mk-faq__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: currentColor;
    transform: translateY(-50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mk-faq__icon::after {
    transform: translateY(-50%) rotate(90deg);
}

.mk-faq__item.is-open .mk-faq__icon::after {
    transform: translateY(-50%) rotate(0deg);
    opacity: 0;
}

.mk-faq__answer-inner {
    padding: 0 4px 22px;
    max-width: 760px;
    color: var(--faq-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.mk-faq__answer-inner p {
    margin: 0 0 1em;
}

.mk-faq__answer-inner p:last-child {
    margin-bottom: 0;
}

.mk-faq__answer-inner a {
    color: var(--faq-text);
    text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
    .mk-faq__toggle,
    .mk-faq__icon::before,
    .mk-faq__icon::after {
        transition: none;
    }
}

@media (max-width: 600px) {
    .mk-faq {
        padding: 36px 0 48px;
    }

    .mk-faq__header,
    .mk-faq__list {
        padding-left: 20px;
        padding-right: 20px;
    }

    .mk-faq__header h2 {
        font-size: 1.8rem;
    }

    .mk-faq__toggle {
        padding: 14px 2px;
        font-size: 1rem;
    }
}
