/* ── Reset ── */
.mn-body * { margin: 0; padding: 0; box-sizing: border-box; }

/* ── Container ── */
.mn-body {
    background: #FBF8F3;
    color: #182C3B;
    font-family: Manrope, -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 40px 24px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.mn-form-wrapper {
    background: #FFF;
    border: 1px solid #C9C0B1;
    border-radius: 2px;
    padding: 32px 28px;
    min-height: 600px;
}

/* ── Logo ── */
.mn-logo {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.34em;
    text-align: center;
    margin-bottom: 28px;
    color: #182C3B;
}

/* ── Progress ── */
.mn-progress {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.mn-progress__step {
    flex: 1;
    height: 2px;
    background: #E3DDD2;
    transition: background 0.3s ease;
}

.mn-progress__step.active {
    background: #DA9936;
}

.mn-progress__label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #56646E;
    margin-bottom: 24px;
    display: block;
}

/* ── Screens ── */
.mn-screen {
    display: none;
    animation: mnReveal 160ms ease-out;
}

.mn-screen.active {
    display: block;
}

@keyframes mnReveal {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: none; }
}

.mn-screen__title {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin: 0 0 12px 0;
    color: #182C3B;
}

.mn-screen__sub {
    font-size: 16px;
    line-height: 1.55;
    color: #56646E;
    margin: 0 0 24px 0;
}

/* ── Choice Cards - Equal Height ── */
.mn-choice-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
    align-items: stretch;
}

.mn-choice {
    position: relative;
    display: flex;
    align-items: stretch;
}

.mn-choice input[type="radio"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    margin: 0;
    cursor: pointer;
}

.mn-choice__label {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 72px;
    height: 100%;
    width: 100%;
    padding: 14px 16px;
    background: #FFF;
    border: 1px solid #C9C0B1;
    border-radius: 2px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.3;
    color: #182C3B;
    cursor: pointer;
    transition: all 0.15s ease;
    word-break: break-word;
    hyphens: auto;
}

.mn-choice input:checked + .mn-choice__label {
    background: #FAF1E0;
    border-color: #DA9936;
    box-shadow: inset 0 0 0 2px #DA9936;
    font-weight: 600;
}

.mn-choice input:focus-visible + .mn-choice__label {
    outline: 2px solid #182C3B;
    outline-offset: 2px;
}

/* ── "Andet" stays in its own column ── */
.mn-choice--full {
    grid-column: span 1;
}

/* ── Fields ── */
.mn-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.mn-field__label {
    font-weight: 600;
    font-size: 13px;
    line-height: 1;
    color: #182C3B;
}

.mn-field__optional {
    font-weight: 500;
    color: #56646E;
}

.mn-field__input {
    width: 100%;
    height: 56px;
    padding: 0 16px;
    background: #FFF;
    border: 1px solid #C9C0B1;
    border-radius: 2px;
    font-size: 16px;
    font-family: inherit;
    color: #182C3B;
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.mn-field__input:focus {
    border-color: #182C3B;
    outline: 2px solid #182C3B;
    outline-offset: 2px;
}

.mn-field__input:disabled {
    background: #F3F0EA;
    border-color: #E3DDD2;
    color: #A79F92;
}

.mn-field__input.error {
    border-color: #9B3A2A;
    background: #FDF6F4;
}

.mn-field__error {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: #9B3A2A;
}

/* ── Stepper ── */
.mn-stepper {
    display: flex;
    border: 1px solid #C9C0B1;
    border-radius: 2px;
    background: #FFF;
    max-width: 300px;
}

.mn-stepper button {
    background: white;
}

.mn-stepper__btn {
    width: 56px;
    height: 56px;
    background: none;
    border: 0;
    font-size: 22px;
    font-family: inherit;
    color: #182C3B;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}

.mn-stepper__btn:hover {
    background: #FBF8F3;
}

.mn-stepper__btn:focus-visible {
    outline: 2px solid #182C3B;
    outline-offset: -2px;
}

.mn-stepper__btn:disabled {
    color: #A79F92;
    cursor: not-allowed;
}

.mn-stepper__value {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #E3DDD2;
    border-right: 1px solid #E3DDD2;
    font-weight: 600;
    font-size: 20px;
    font-variant-numeric: tabular-nums;
    font-family: inherit;
}

/* ── Checkbox ── */
.mn-checkbox {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
    cursor: pointer;
    margin-bottom: 18px;
}

.mn-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin: 2px 0 0;
    accent-color: #DA9936;
    cursor: pointer;
}

.mn-checkbox__label {
    font-size: 14px;
    line-height: 1.5;
    color: #56646E;
}

.mn-checkbox.error input[type="checkbox"] {
    border-color: #9B3A2A;
}

.mn-checkbox.error .mn-checkbox__label {
    color: #9B3A2A;
    font-weight: 500;
}

/* ── Note ── */
.mn-note {
    background: #F7F2E8;
    border: 1px solid #EADFC9;
    border-radius: 2px;
    padding: 16px 18px;
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 20px;
    animation: mnReveal 160ms ease-out;
}

/* ── Reveal ── */
.mn-reveal {
    border-top: 2px solid #DA9936;
    padding-top: 16px;
    margin-bottom: 20px;
    animation: mnReveal 160ms ease-out;
}

/* ── Row ── */
.mn-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── Navigation ── */
.mn-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 32px;
    padding-top: 8px;
}

.mn-nav--inline {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ── Buttons ── */
.mn-btn {
    height: 56px;
    padding: 0 32px;
    background: #DA9936;
    color: #182C3B;
    border: 0;
    border-radius: 2px;
    font-weight: 700;
    font-size: 15px;
    font-family: inherit;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.mn-btn:hover {
    background: #C98A2A;
}

.mn-btn:focus-visible {
    outline: 2px solid #182C3B;
    outline-offset: 2px;
}

.mn-btn:disabled {
    background: #EDE7DC;
    color: #A79F92;
    cursor: not-allowed;
}

.mn-btn__spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(24, 44, 59, 0.3);
    border-top-color: #182C3B;
    border-radius: 50%;
    animation: mnSpin 700ms linear infinite;
}

.mn-btn--loading .mn-btn__spinner {
    display: inline-block;
}

@keyframes mnSpin {
    to { transform: rotate(360deg); }
}

.mn-btn--back {
    background: none;
    border: 0;
    padding: 0;
    min-height: 44px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #56646E;
    cursor: pointer;
    width: auto;
    align-self: flex-start;
}

.mn-btn--back:hover {
    color: #182C3B;
}

.mn-btn--back:focus-visible {
    outline: 2px solid #182C3B;
    outline-offset: 2px;
}

.mn-btn--back:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: none;
    color: #56646E;
}

/* ── Reviews Box ── */
.mn-review-box {
    background: #FAF1E0;
    border: 1px solid #EADFC9;
    border-radius: 2px;
    padding: 24px 20px;
    margin-bottom: 24px;
}

.mn-review-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #EADFC9;
}

.mn-review-stars {
    color: #DA9936;
    font-size: 20px;
    letter-spacing: 3px;
}

.mn-review-number {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 44px;
    line-height: 1;
    color: #182C3B;
}

.mn-review-label {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    color: #56646E;
}

.mn-review-content {
    margin-top: 16px;
}

.mn-review-quote {
    margin: 0 0 10px 0;
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: #182C3B;
}

.mn-review-author {
    font-weight: 600;
    font-size: 13px;
    line-height: 1.4;
    color: #56646E;
}

/* ── Did You Know Image ── */
.mn-didknow-image {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 2px;
    margin-bottom: 24px;
}

.mn-didknow-content {
    margin-bottom: 24px;
}

.mn-didknow-text {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.4;
    color: #182C3B;
    margin: 0 0 16px 0;
}

.mn-didknow-highlight {
    color: #8C5D14;
    border-bottom: 1px solid #DA9936;
}

.mn-didknow-body {
    font-size: 15px;
    line-height: 1.65;
    color: #56646E;
    margin: 0 0 12px 0;
}

.mn-didknow-body:last-child {
    margin-bottom: 0;
}

/* ── Budget ── */
.mn-budget-amount {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.2;
}

.mn-budget-desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #56646E;
}

.mn-budget-note {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    color: #182C3B;
    margin: 0 0 24px 0;
}

/* ── Receipt ── */
.mn-receipt {
    text-align: center;
    padding: 20px 0;
}

.mn-receipt__image {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    border-radius: 2px;
    margin: 0 0 24px 0;
}

.mn-receipt__title {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.22;
    letter-spacing: -0.01em;
    margin: 0 0 12px 0;
    color: #182C3B;
}

.mn-receipt__tagline {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.5;
    color: #182C3B;
    margin: 0 0 16px 0;
}

.mn-receipt__tagline span {
    color: #DA9936;
}

.mn-receipt__text {
    font-size: 15px;
    line-height: 1.65;
    color: #56646E;
    max-width: 52ch;
    margin: 0 auto;
}

.mn-helper {
    font-size: 14px;
    line-height: 1.55;
    color: #56646E;
    margin: 16px 0 0 0;
}

/* ── Page Container Override ── */
#page-1841 .grve-container {
    max-width: 100%;
}

.mn-stepper button {
    background: white;
}

/* ── Responsive ── */
@media (min-width: 768px) {
    .mn-body {
        padding: 60px 40px 100px;
        max-width: 1280px;
    }
    .mn-form-wrapper {
        padding: 48px 56px;
        min-height: 680px;
    }
    .mn-screen__title {
        font-size: 44px;
        line-height: 1.12;
    }
    .mn-choice-group {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .mn-choice__label {
        min-height: 68px;
        padding: 16px 18px;
        font-size: 16px;
    }
    .mn-row {
        flex-direction: row;
        gap: 28px;
    }
    .mn-row .mn-field {
        flex: 1;
    }
    .mn-nav--inline {
        flex-direction: row;
        align-items: center;
        gap: 28px;
    }
    .mn-btn {
        width: auto;
        min-width: 260px;
    }
    .mn-receipt__title {
        font-size: 44px;
    }
    .mn-receipt__image {
        max-height: 420px;
    }
    .mn-didknow-image {
        height: 420px;
    }
}

@media (min-width: 1024px) {
    .mn-body {
        padding: 80px 64px 120px;
    }
    .mn-form-wrapper {
        padding: 56px 64px;
    }
}