/* ═══════════════════════════════════════════════════════════════════════════
   MMNS GLOBAL EMPIRE — Landing Page Styles
   Palette: #000000 · #0d0d0d · #C9942A · #E8C56D · #ffffff · #888888
   Font: Nunito Variable (self-hosted)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Fonts ──────────────────────────────────────────────────────────────── */
@font-face {
    font-family: 'Nunito';
    src: url('https://moneymakersneversleeps.com/wp-content/uploads/fonts/Nunito-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nunito';
    src: url('https://moneymakersneversleeps.com/wp-content/uploads/fonts/Nunito-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* ─── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --c-bg:        #000000;
    --c-bg-2:      #0d0d0d;
    --c-gold:      #C9942A;
    --c-gold-lt:   #E8C56D;
    --c-white:     #ffffff;
    --c-gray:      #888888;
    --c-gray-lt:   #bbbbbb;
    --c-border:    rgba(201, 148, 42, 0.25);
    --font:        'Nunito', sans-serif;
    --nav-h:       80px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--c-bg);
    color: var(--c-white);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ─── Wrapper ────────────────────────────────────────────────────────────── */
.mmns-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Gold-Glow links oben hinter der Headline-Zone */
.mmns-wrapper::before {
    content: '';
    position: fixed;
    top: 10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(201,148,42,0.09) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* ─── NAVBAR ─────────────────────────────────────────────────────────────── */
.mmns-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--c-border);
    z-index: 100;
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-cta {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid var(--c-gold);
    color: var(--c-gold);
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: background 0.25s, color 0.25s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--c-gold);
    color: var(--c-bg);
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.mmns-hero {
    flex: 1;
    padding-top: var(--nav-h);
    position: relative;
    z-index: 1;
    background: var(--c-bg);
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 40px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: calc(100vh - var(--nav-h) - 80px);
}

/* ── Hero Left ── */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: var(--c-gold);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-headline {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--c-white);
    margin-bottom: 28px;
    /* Glow unter der Headline statt hinter MR.BIG */
    filter: drop-shadow(0 8px 40px rgba(201,148,42,0.18));
}

.hero-headline .gold {
    color: var(--c-gold);
}

.hero-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-gray-lt);
}

.hero-tags .divider {
    color: var(--c-gold);
    opacity: 0.5;
}

/* ─── Newsletter Block ─────────────────────────────────────────────────── */
.newsletter-lead {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--c-gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.newsletter-body {
    font-size: 15px;
    font-weight: 400;
    color: var(--c-gray-lt);
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 420px;
}

/* Form */
.newsletter-form { width: 100%; }

.form-row {
    display: flex;
    gap: 0;
    margin-bottom: 12px;
}

.input-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    width: 18px;
    height: 18px;
    color: var(--c-gray);
    pointer-events: none;
    flex-shrink: 0;
}

.input-wrap input[type="email"] {
    width: 100%;
    padding: 16px 16px 16px 46px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,148,42,0.3);
    border-right: none;
    color: var(--c-white);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

.input-wrap input[type="email"]::placeholder {
    color: var(--c-gray);
    letter-spacing: 0.1em;
}

.input-wrap input[type="email"]:focus {
    background: rgba(255,255,255,0.07);
    border-color: var(--c-gold);
}

.btn-join {
    position: relative;
    padding: 16px 28px;
    background: var(--c-gold);
    border: 1px solid var(--c-gold);
    color: #000000;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 0;
    min-width: 150px;
}

.btn-join:hover {
    background: var(--c-gold-lt);
    border-color: var(--c-gold-lt);
}

.btn-join:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Spinner */
.btn-loader {
    display: none;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(0,0,0,0.3);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    flex-shrink: 0;
}

.btn-join.loading .btn-loader { display: block; }
.btn-join.loading .btn-text { opacity: 0.7; }

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Feedback messages */
.form-feedback {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    min-height: 20px;
    transition: opacity 0.3s;
}

.form-feedback.success {
    color: var(--c-gold-lt);
}

.form-feedback.error {
    color: #e05555;
}

/* Privacy note */
.privacy-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: var(--c-gray);
    margin-top: 12px;
}

.privacy-note svg {
    color: var(--c-gray);
    flex-shrink: 0;
}

/* ── Hero Right ── */
.hero-right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-location {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-gold);
    line-height: 1.5;
    text-align: right;
    margin-bottom: 12px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero-image-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: contain;
    object-position: bottom;
    position: relative;
    z-index: 1;
}

/* ─── FEATURE BAR ────────────────────────────────────────────────────────── */
.mmns-features {
    background: var(--c-bg-2);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    position: relative;
    z-index: 1;
}

.features-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 36px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
    text-align: center;
    padding: 0 10px;
    cursor: default;
    transition: transform 0.2s;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feat-icon {
    width: 44px;
    height: 44px;
    color: var(--c-gold);
    transition: color 0.2s;
}

.feature-item:hover .feat-icon {
    color: var(--c-gold-lt);
}

.feature-item span {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-white);
    line-height: 1.5;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.mmns-footer {
    background: var(--c-bg-2);
    border-top: 1px solid rgba(201,148,42,0.15);
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 40px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-crown {
    color: var(--c-gold);
    margin-bottom: 4px;
}

.footer-brand {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-gold);
}

.footer-tagline {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--c-gray);
    margin-bottom: 12px;
}

.footer-links {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(201,148,42,0.12);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-gray);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-legal a {
    color: var(--c-gray);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--c-gold);
}

.footer-legal .sep {
    color: var(--c-border);
}

.footer-chevron {
    color: var(--c-gold);
    opacity: 0.5;
    margin-top: 8px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(5px); }
}

/* ─── IMPRESSUM / DATENSCHUTZ PAGE ──────────────────────────────────────── */
.page-content-wrapper {
    padding-top: var(--nav-h);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-content-main {
    flex: 1;
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 40px;
}

.page-content-main h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 36px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--c-border);
}

.page-content-main h2 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-gold-lt);
    margin: 32px 0 12px;
}

.page-content-main p,
.page-content-main li {
    font-size: 15px;
    color: var(--c-gray-lt);
    line-height: 1.75;
}

.page-content-main ul {
    padding-left: 20px;
    margin: 8px 0;
}

.page-content-main a {
    color: var(--c-gold);
    transition: color 0.2s;
}

.page-content-main a:hover {
    color: var(--c-gold-lt);
}

/* ─── LANGUAGE SWITCHER ──────────────────────────────────────────────────── */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(201,148,42,0.35);
    color: var(--c-gray-lt);
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 8px 12px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.lang-label {
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.14em;
    font-weight: 700;
}

.lang-current:hover,
.lang-switcher.open .lang-current {
    border-color: var(--c-gold);
    color: var(--c-gold);
}

.lang-globe {
    display: flex;
    align-items: center;
    opacity: 0.7;
}

.lang-chevron {
    display: flex;
    align-items: center;
    opacity: 0.6;
    transition: transform 0.2s;
}

.lang-switcher.open .lang-chevron {
    transform: rotate(180deg);
}

/* Dropdown */
.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #0d0d0d;
    border: 1px solid rgba(201,148,42,0.25);
    list-style: none;
    min-width: 200px;
    max-height: 360px;
    overflow-y: auto;
    z-index: 200;
    /* Scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: rgba(201,148,42,0.3) transparent;
}

.lang-dropdown::-webkit-scrollbar {
    width: 4px;
}
.lang-dropdown::-webkit-scrollbar-track {
    background: transparent;
}
.lang-dropdown::-webkit-scrollbar-thumb {
    background: rgba(201,148,42,0.3);
    border-radius: 2px;
}

.lang-switcher.open .lang-dropdown {
    display: block;
    animation: langFadeIn 0.15s ease;
}

@keyframes langFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Section headers inside dropdown */
.lang-section-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-gold);
    padding: 10px 14px 4px;
    opacity: 0.7;
    pointer-events: none;
    border-top: 1px solid rgba(201,148,42,0.1);
}

.lang-section-label:first-child {
    border-top: none;
}

/* Language options */
.lang-dropdown li[role="option"] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 500;
    color: var(--c-gray-lt);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.lang-dropdown li[role="option"]:hover {
    background: rgba(201,148,42,0.08);
    color: var(--c-white);
}

.lang-dropdown li[role="option"].lang-active {
    color: var(--c-gold);
    background: rgba(201,148,42,0.06);
}

.lang-flag {
    font-size: 15px;
    line-height: 1;
    flex-shrink: 0;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-inner {
        padding: 50px 32px 20px;
        gap: 30px;
    }

    .hero-headline {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .features-inner {
        flex-wrap: wrap;
        padding: 30px 32px;
        gap: 24px;
    }

    .feature-item {
        flex: 0 0 calc(33.333% - 16px);
    }
}

@media (max-width: 768px) {
    :root { --nav-h: 64px; }

    .nav-inner { padding: 0 14px; }

    /* Logo: deutlich größer */
    .nav-logo img { height: 46px; }

    /* CTA-Button: kleiner */
    .nav-cta { font-size: 9px; padding: 6px 10px; letter-spacing: 0.08em; }

    /* Kontakt-Link: kleiner */
    .nav-link { font-size: 9px; padding: 4px 8px; letter-spacing: 0.08em; }

    /* Translator: kompakter */
    .lang-current { padding: 5px 7px; font-size: 9px; gap: 3px; }
    .lang-globe svg { width: 12px; height: 12px; }
    .lang-chevron svg { width: 8px; height: 5px; }
    .lang-label { display: none; }
    .lang-dropdown { right: 0; min-width: 180px; }
    .nav-right { gap: 6px; }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 40px 20px 0;
        min-height: auto;
        gap: 0;
    }

    .hero-right {
        order: -1;
        align-items: center;
        margin-bottom: 32px;
    }

    .hero-location {
        position: static;
        text-align: center;
        margin-bottom: 16px;
    }

    .hero-image {
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-headline { font-size: 2.2rem; }

    .form-row {
        flex-direction: column;
        gap: 8px;
    }

    .input-wrap input[type="email"] {
        border-right: 1px solid rgba(201,148,42,0.3);
    }

    .btn-join {
        width: 100%;
        justify-content: center;
    }

    .features-inner {
        padding: 24px 20px;
        gap: 20px;
    }

    .feature-item {
        flex: 0 0 calc(50% - 10px);
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline { font-size: 1.85rem; }

    .feature-item {
        flex: 0 0 calc(50% - 10px);
    }

    .footer-brand { font-size: 18px; letter-spacing: 0.15em; }
}

/* ─── Google Translate Toolbar ausblenden ────────────────────────────────── */
.goog-te-banner-frame,
.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame,
div#goog-gt- {
    display: none !important;
    visibility: hidden !important;
}

body {
    top: 0 !important;
    position: static !important;
}

/* ─── Accessibility ──────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 2px solid var(--c-gold);
    outline-offset: 3px;
}

/* ─── NAV LINK (Contact) ─────────────────────────────────────── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-gray-lt);
    text-decoration: none;
    padding: 6px 12px;
    transition: color 0.2s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 12px; right: 12px;
    height: 1px;
    background: var(--c-gold);
    transform: scaleX(0);
    transition: transform 0.2s;
}
.nav-link:hover,
.nav-link-active { color: var(--c-gold); }
.nav-link:hover::after,
.nav-link-active::after { transform: scaleX(1); }

/* ─── CONTACT PAGE ───────────────────────────────────────────── */
.mmns-contact-main {
    max-width: 760px;
}
.mmns-contact-intro {
    font-size: 15px;
    color: var(--c-gray-lt);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
}

/* Feedback banner */
.mmns-contact-feedback {
    padding: 14px 18px;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.mmns-contact-feedback.success {
    background: rgba(37,211,102,0.07);
    border: 1px solid rgba(37,211,102,0.25);
    border-left: 3px solid #25d366;
    color: #6ee89a;
}
.mmns-contact-feedback.error {
    background: rgba(255,79,79,0.07);
    border: 1px solid rgba(255,79,79,0.2);
    border-left: 3px solid #ff4f4f;
    color: #ff9090;
}

/* Form layout */
.mmns-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mmns-cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.mmns-cf-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.mmns-cf-full { grid-column: 1 / -1; }

/* Labels */
.mmns-cf-field label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-gray-lt);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.mmns-cf-req      { color: var(--c-gold); font-size: 13px; }
.mmns-cf-optional { color: var(--c-gray); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 10px; }

/* Inputs */
.mmns-contact-form input[type="text"],
.mmns-contact-form input[type="email"],
.mmns-contact-form input[type="tel"],
.mmns-contact-form input[type="number"],
.mmns-contact-form textarea {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,148,42,0.22);
    color: var(--c-white);
    font-family: var(--font);
    font-size: 14px;
    padding: 13px 16px;
    outline: none;
    border-radius: 0;
    transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    box-sizing: border-box;
}
.mmns-contact-form input::placeholder,
.mmns-contact-form textarea::placeholder { color: rgba(255,255,255,0.18); }
.mmns-contact-form input:focus,
.mmns-contact-form textarea:focus {
    border-color: var(--c-gold);
    background: rgba(255,255,255,0.05);
}
.mmns-contact-form textarea { resize: vertical; min-height: 140px; line-height: 1.6; }

/* Captcha */
.mmns-cf-captcha-field label { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 6px; }
.mmns-cf-captcha-question { color: var(--c-gold-lt); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: none; width: 100%; margin-top: 4px; }
.mmns-cf-captcha-question strong { color: var(--c-gold); font-size: 16px; }

/* Privacy checkbox – komplett eigenes Layout, erbt nichts vom .mmns-cf-field */
.mmns-cf-privacy {
    margin-top: 4px;
    display: block !important;
    flex-direction: unset !important;
}
.mmns-cf-privacy label,
.mmns-cf-privacy .mmns-cf-checkbox-label {
    display: grid !important;
    grid-template-columns: 18px 1fr !important;
    gap: 12px !important;
    align-items: start !important;
    cursor: pointer;
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    color: var(--c-gray-lt) !important;
    line-height: 1.6;
}
.mmns-cf-checkbox-label {
    /* Layout via .mmns-cf-privacy label override (grid) */
    cursor: pointer;
    font-size: 13px;
    color: var(--c-gray-lt);
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}
.mmns-cf-checkbox-label input[type="checkbox"] { display: none; }
.mmns-cf-checkbox-box {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1px solid rgba(201,148,42,0.35);
    background: transparent;
    margin-top: 2px;
    position: relative;
    display: block;
    transition: border-color 0.2s, background 0.2s;
}
.mmns-cf-checkbox-label input:checked + .mmns-cf-checkbox-box {
    background: var(--c-gold);
    border-color: var(--c-gold);
}
.mmns-cf-checkbox-label input:checked + .mmns-cf-checkbox-box::after {
    content: '';
    position: absolute;
    left: 4px; top: 1px;
    width: 6px; height: 10px;
    border: 2px solid #000;
    border-top: none; border-left: none;
    transform: rotate(45deg);
}
.mmns-cf-checkbox-label a { color: var(--c-gold); text-decoration: underline; text-decoration-style: dotted; }
.mmns-cf-checkbox-label a:hover { color: var(--c-gold-lt); }

/* Submit button */
.mmns-cf-submit {
    position: relative;
    padding: 14px 36px;
    background: var(--c-gold);
    border: 1px solid #8a6a1a;
    color: #000;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
    align-self: flex-start;
}
.mmns-cf-submit:hover { background: var(--c-gold-lt); }
.mmns-cf-submit:disabled { opacity: 0.55; cursor: not-allowed; }
.mmns-cf-submit-loader {
    display: none;
    width: 14px; height: 14px;
    border: 2px solid rgba(0,0,0,0.25);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}
.mmns-cf-submit.loading .mmns-cf-submit-loader { display: block; }
.mmns-cf-submit.loading .mmns-cf-submit-text   { opacity: 0.7; }
@keyframes spin { to { transform: rotate(360deg); } }

.mmns-cf-required-note {
    font-size: 11px;
    color: var(--c-gray);
    margin-top: 8px;
    letter-spacing: 0.04em;
}

/* ─── Contact responsive ─────────────────────────────────────── */
@media (max-width: 600px) {
    .mmns-cf-row { grid-template-columns: 1fr; }
    .mmns-cf-submit { width: 100%; justify-content: center; }
}
