/* =========================
   FONTS
   ========================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Great+Vibes&display=swap');

/* =========================
   ROOT + GLOBAL
   ========================= */
:root {
    --mk-bg: #000000;
    --mk-surface: #111111;
    --mk-surface-soft: #161616;
    --mk-border-soft: rgba(255, 255, 255, 0.06);
    --mk-text: #f5f5f5;
    --mk-muted: #b3b3b3;
    --mk-accent: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

.mk-body {
    background-color: var(--mk-bg);
    color: var(--mk-text);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
}

/* Main wrapper */
.mk-main {
    min-height: 100vh;
    padding-bottom: 80px;
}

/* =========================
   HEADER
   ========================= */
.mk-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    border-bottom: 1px solid var(--mk-border-soft);
}

.mk-header-inner {
    max-width: 1180px;
    margin: 0 auto;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
}

.mk-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.mk-nav a {
    text-decoration: none;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.86);
    white-space: nowrap;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.mk-nav a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

/* =========================
   HERO (HOME)
   ========================= */
.mk-hero {
    max-width: 1180px;
    margin: 0 auto;
    padding: 120px 32px 80px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 70px;
}

/* Left side text */
.mk-hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mk-hero-signature {
    font-family: "Great Vibes", cursive;
    font-size: 60px;
    font-weight: 400;
    color: var(--mk-text);
    margin: 0 0 10px;
}

.mk-hero-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mk-muted);
    margin: 0 0 20px;
}

.mk-hero-copy {
    font-size: 15px;
    line-height: 1.7;
    color: #d3d3d3;
    max-width: 540px;
    margin: 0 0 18px;
}

.mk-hero-copy-highlight {
    color: #e6e6e6;
    font-style: italic;
}

/* CTA row */
.mk-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

/* Buttons */
.mk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 28px;
    border-radius: 0;
    border: 1px solid var(--mk-accent);
    color: var(--mk-accent);
    background: transparent;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.18s ease, color 0.18s ease,
        border-color 0.18s ease;
}

.mk-btn:hover {
    background-color: var(--mk-accent);
    color: #000000;
}

.mk-btn.mk-btn-secondary {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.03);
    color: #f5f5f5;
}

.mk-btn.mk-btn-secondary:hover {
    background: #ffffff;
    color: #000000;
}

/* Right side portrait – zoomed & blended */
.mk-hero-photo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000000;
}

.mk-hero-photo img {
    width: 155%;
    max-width: none;
    height: 480px;
    display: block;
    object-fit: cover;
    object-position: 58% top;
    filter: grayscale(1) contrast(0.95) brightness(0.86);
}

.mk-hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to left,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.85) 18%,
            rgba(0, 0, 0, 0.4) 40%,
            transparent 70%),
        linear-gradient(to right,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.85) 18%,
            rgba(0, 0, 0, 0.4) 40%,
            transparent 70%),
        linear-gradient(to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.8) 20%,
            rgba(0, 0, 0, 0.35) 45%,
            transparent 70%),
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.85) 0%,
            transparent 45%);
    pointer-events: none;
}

/* =========================
   CONTENT SECTIONS (HOME)
   ========================= */
.mk-section {
    max-width: 980px;
    margin: 0 auto;
    padding: 40px 32px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.mk-section h2 {
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mk-muted);
    margin: 0 0 10px;
}

.mk-section p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #d0d0d0;
}

/* =========================
   FOOTER
   ========================= */
.mk-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: radial-gradient(circle at top, #141414 0%, #050505 60%, #000000 100%);
    margin-top: 40px;
}

.mk-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 32px 32px 18px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.4fr;
    gap: 32px;
}

.mk-footer-col {
    font-size: 13px;
    color: #d6d6d6;
}

.mk-footer-name {
    font-family: "Great Vibes", cursive;
    font-size: 32px;
    margin-bottom: 6px;
    color: #ffffff;
}

.mk-footer-tagline {
    font-size: 13px;
    color: #b8b8b8;
}

.mk-footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 11px;
}

.mk-footer-links a {
    color: rgba(245, 245, 245, 0.82);
    text-decoration: none;
    transition: opacity 0.18s ease;
}

.mk-footer-links a:hover {
    opacity: 1;
}

.mk-footer-note {
    text-align: right;
}

.mk-footer-text {
    font-size: 12px;
    line-height: 1.7;
    color: #c7c7c7;
}

.mk-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    padding: 10px 16px 16px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8f8f8f;
}

/* =========================
   ABOUT / GENERIC TWO-COLUMN
   ========================= */

.mk-about {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: radial-gradient(circle at top, #141414 0%, #050505 60%, #000000 100%);
}

.mk-about-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 96px 32px 80px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 70px;
    align-items: center;
}

.mk-about-text {
    max-width: 560px;
}

.mk-page-label {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #b3b3b3;
    margin: 0 0 8px;
}

.mk-about-title {
    font-family: "Great Vibes", cursive;
    font-size: 46px;
    font-weight: 400;
    margin: 0 0 4px;
    color: #ffffff;
}

.mk-about-subtitle {
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c0c0c0;
    margin: 0 0 20px;
}

.mk-about-copy {
    font-size: 14px;
    line-height: 1.8;
    color: #d4d4d4;
    margin: 0 0 14px;
}

.mk-about-cta {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Portrait as intentional card */
.mk-about-photo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: radial-gradient(circle at top, #101010 0%, #050505 55%, #000000 100%);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        0 22px 40px rgba(0, 0, 0, 0.95),
        0 0 0 1px rgba(255, 255, 255, 0.04);
}

.mk-about-photo img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 2px;
    filter: grayscale(1) contrast(0.98) brightness(0.94);
}

/* =========================
   PRICING PAGE
   ========================= */

.mk-pricing-hero {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: radial-gradient(circle at top, #141414 0%, #050505 60%, #000000 100%);
}

.mk-pricing-hero-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 72px 32px 56px;
}

.mk-pricing-title {
    font-size: 20px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    margin: 0 0 18px;
    color: #f5f5f5;
}

.mk-pricing-lead {
    font-size: 15px;
    line-height: 1.8;
    color: #d5d5d5;
    max-width: 720px;
    margin: 0 0 14px;
}

/* Sections under hero */
.mk-pricing-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 40px 32px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Main grid */
.mk-pricing-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 26px;
}

.mk-pricing-card {
    background: #0b0b0b;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px 22px 20px;
}

.mk-pricing-card-main {
    background: #111111;
}

.mk-pricing-card h2,
.mk-pricing-card h3 {
    font-size: 14px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: #f3f3f3;
}

.mk-pricing-meta {
    font-size: 13px;
    color: #bdbdbd;
    margin: 0 0 18px;
}

/* Amount row */
.mk-pricing-amount-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 16px;
}

.mk-pricing-amount {
    min-width: 140px;
}

.mk-pricing-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a9a9a9;
    margin-bottom: 4px;
}

.mk-pricing-value {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

/* Lists */
.mk-pricing-list {
    margin: 0 0 14px;
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.6;
    color: #d2d2d2;
}

.mk-pricing-list li + li {
    margin-top: 4px;
}

.mk-pricing-note {
    font-size: 12px;
    line-height: 1.7;
    color: #b7b7b7;
}

/* Contact & deposit callout */
.mk-pricing-callout {
    max-width: 980px;
    margin: 0 auto;
    background: #0b0b0b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 22px 20px;
}

.mk-pricing-callout h2 {
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin: 0 0 12px;
    color: #f2f2f2;
}

.mk-pricing-callout p {
    font-size: 13px;
    line-height: 1.7;
    color: #d6d6d6;
    margin: 0 0 10px;
}

.mk-pricing-callout ul {
    margin: 0 0 10px;
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.7;
    color: #d4d4d4;
}

.mk-pricing-callout li + li {
    margin-top: 4px;
}

.mk-pricing-phone {
    font-size: 13px;
    font-weight: 500;
}

.mk-pricing-phone span {
    font-weight: 600;
    letter-spacing: 0.06em;
}

/* WhatsApp CTA */
.mk-whatsapp-btn {
    display: inline-block;
    margin: 12px 0 18px;
    padding: 11px 26px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 11px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mk-whatsapp-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Steps blocks */
.mk-pricing-steps {
    margin-top: 26px;
    max-width: 520px;
}

.mk-pricing-steps-right {
    margin-left: auto;
}

.mk-pricing-steps h2 {
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #f0f0f0;
    margin: 0 0 10px;
}

.mk-pricing-steps ol,
.mk-pricing-steps ul {
    margin: 0;
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.7;
    color: #d4d4d4;
}

.mk-pricing-steps li + li {
    margin-top: 4px;
}

/* =========================
   GALLERY
   ========================= */

.mk-gallery-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 40px 32px 70px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.mk-gallery-section h2 {
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mk-muted);
    margin: 0 0 8px;
}

/* Optional nicer intro – used on gallery page */
.mk-gallery-intro {
    max-width: 640px;
    font-size: 14px;
    line-height: 1.8;
    color: #d0d0d0;
    margin: 0 0 26px;
}
.mk-gallery-intro span {
    display: block;
    font-style: italic;
    color: #e2e2e2;
    margin-top: 4px;
}

.mk-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.mk-gallery-card {
    margin: 0;
    background: #0b0b0b;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 10px;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
}

.mk-gallery-media {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #000000;
}

/* Shared media look: images + videos strictly B&W (where supported) */
.mk-gallery-media img,
.mk-gallery-media video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: grayscale(1) contrast(0.98) brightness(0.94);
    -webkit-filter: grayscale(1) contrast(0.98) brightness(0.94);
}

.mk-gallery-caption {
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #bcbcbc;
}

/* =========================
   AGE GATE
   ========================= */

.mk-agegate {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: none; /* shown via JS */
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.mk-agegate-inner {
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.95);
    padding: 32px 32px 26px;
    max-width: 420px;
    margin: 0 16px;
    text-align: center;
}

.mk-agegate-title {
    font-family: "Great Vibes", cursive;
    font-size: 40px;
    margin: 4px 0 8px;
    color: #ffffff;
}

.mk-agegate-subtitle {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #b3b3b3;
    margin: 0;
}

.mk-agegate-text {
    font-size: 13px;
    line-height: 1.8;
    color: #d7d7d7;
    margin: 0 0 18px;
}

.mk-agegate-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
}

.mk-agegate-btn {
    padding: 10px 22px;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.18s ease, color 0.18s ease, opacity 0.18s;
}

.mk-agegate-btn.primary {
    background: #ffffff;
    color: #000000;
}

.mk-agegate-btn:hover {
    opacity: 0.9;
}

.mk-agegate-note {
    font-size: 11px;
    color: #a8a8a8;
    margin: 0;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 900px) {
    .mk-header-inner {
        padding: 0 10px;
    }

    .mk-nav {
        gap: 10px;
        flex-wrap: nowrap;         /* keep one line */
        justify-content: center;
    }

    .mk-nav a {
        font-size: 8.5px;
        letter-spacing: 0.14em;
    }

    .mk-hero {
        padding: 96px 18px 60px;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mk-hero-text {
        align-items: flex-start;
    }

    .mk-hero-signature {
        font-size: 46px;
    }

    .mk-hero-photo img {
        height: 440px;
    }

    .mk-section {
        padding: 32px 18px 6px;
    }

    .mk-footer-inner {
        max-width: 980px;
        padding: 26px 18px 14px;
        display: block;
    }

    .mk-footer-col {
        margin-bottom: 18px;
    }

    .mk-footer-name {
        font-size: 28px;
    }

    .mk-footer-links {
        align-items: flex-start;
    }

    .mk-footer-note {
        text-align: left;
    }

    .mk-pricing-hero-inner {
        padding: 52px 18px 40px;
    }

    .mk-pricing-section {
        padding: 32px 18px 6px;
    }

    .mk-pricing-grid {
        grid-template-columns: 1fr;
    }

    .mk-pricing-steps,
    .mk-pricing-steps-right {
        max-width: none;
        margin-left: 0;
    }

    .mk-about-inner {
        padding: 72px 18px 52px;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mk-about-photo {
        margin-top: 6px;
    }

    .mk-about-photo img {
        max-height: 420px;
    }

    .mk-gallery-section {
        padding: 28px 18px 52px;
    }

    .mk-gallery-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    .mk-gallery-card {
        padding: 10px;
        box-shadow: 0 14px 24px rgba(0, 0, 0, 0.9);
    }

    .mk-gallery-media {
        aspect-ratio: 3 / 4;
    }

    .mk-gallery-media img,
    .mk-gallery-media video {
        transform: scale(1.04);
    }

    .mk-gallery-caption {
        font-size: 10px;
        letter-spacing: 0.14em;
    }
}

@media (max-width: 600px) {
    .mk-header-inner {
        height: 56px;
        padding: 0 6px;
    }

    .mk-nav {
        gap: 6px;
        flex-wrap: nowrap;        /* still one line */
        justify-content: center;
    }

    .mk-nav a {
        font-size: 7.5px;
        letter-spacing: 0.12em;
    }

    .mk-hero {
        padding-top: 84px;
    }

    .mk-hero-signature {
        font-size: 40px;
    }

    .mk-hero-photo img {
        height: 400px;
    }
}
/* ===== Header & Navigation (desktop + mobile) ===== */

.mk-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #050506;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mk-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.mk-brand {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.mk-brand-script {
    font-family: "Great Vibes", cursive;
    font-size: 2rem;
    letter-spacing: 0.08em;
    color: #f7f7f7;
    text-shadow: 0 0 18px rgba(0, 0, 0, 0.9);
    white-space: nowrap;
}

/* Desktop nav */

.mk-nav {
    display: flex;
    gap: 26px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.mk-nav a {
    color: #e5e5e5;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.mk-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.18s ease-out;
}

.mk-nav a:hover::after {
    width: 100%;
}

/* Hamburger – hidden on desktop */

.mk-nav-toggle {
    display: none;
    width: 36px;
    height: 26px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.mk-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 6px 0;
    background: #f7f7f7;
    transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}

/* ===== Mobile layout ===== */

@media (max-width: 880px) {
    .mk-header-inner {
        padding: 12px 16px;
    }

    .mk-brand-script {
        font-size: 1.6rem;
    }

    .mk-nav-toggle {
        display: inline-block;
    }

    .mk-nav {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        background: #050506;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        display: none;
        flex-direction: column;
        padding: 16px 18px 20px;
        gap: 14px;
    }

    .mk-nav.is-open {
        display: flex;
    }

    .mk-nav a {
        font-size: 0.86rem;
        letter-spacing: 0.14em;
    }

    /* Hamburger animation */
    .mk-nav-toggle.is-open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mk-nav-toggle.is-open span:nth-child(2) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
/* ===== COOKIE BANNER ===== */
.mk-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(4px);
    padding: 16px 22px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mk-cookie-inner {
    max-width: 1000px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.mk-cookie-text {
    color: #e7e7e7;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    font-family: "Inter", sans-serif;
}

.mk-cookie-btn {
    padding: 8px 18px;
    background: #ffffff;
    color: #000;
    border: none;
    font-size: 0.85rem;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 3px;
    transition: background 0.2s ease;
}

.mk-cookie-btn:hover {
    background: #dcdcdc;
}

@media (max-width: 520px) {
    .mk-cookie-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .mk-cookie-btn {
        width: 100%;
        text-align: center;
    }
}
/* ✅ WhatsApp button – white, WhatsApp-style */
.mk-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px; /* pill */
    background-color: #ffffff;
    color: #25D366; /* WhatsApp green */
    border: 2px solid #25D366;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease;
}

.mk-whatsapp-btn:hover,
.mk-whatsapp-btn:focus {
    background-color: #25D366;
    color: #000000; /* readable on green */
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.3);
    transform: translateY(-1px);
}

.mk-whatsapp-btn:active {
    transform: translateY(0);
    box-shadow: none;
}
/* WhatsApp button – white WhatsApp style */
.mk-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    background-color: #ffffff;
    color: #25D366;
    border: 2px solid #25D366;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease;
}

.mk-whatsapp-btn:hover,
.mk-whatsapp-btn:focus {
    background-color: #25D366;
    color: #000000;
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.3);
    transform: translateY(-1px);
}

.mk-whatsapp-btn:active {
    transform: translateY(0);
    box-shadow: none;
}
/* WhatsApp button – white icon on black background */
.mk-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 999px;
    background-color: #000000;      /* black button */
    border: 1px solid #ffffff;      /* thin white border */
    color: #ffffff;                 /* white label text */
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.85rem;
    text-decoration: none;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease;
}

.mk-whatsapp-btn-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mk-whatsapp-btn-icon img {
    display: block;
    width: 16px;
    height: 16px;
}

.mk-whatsapp-btn-label {
    line-height: 1;
}

.mk-whatsapp-btn:hover,
.mk-whatsapp-btn:focus {
    background-color: #111111;      /* slightly lighter black on hover */
    border-color: #ffffff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.mk-whatsapp-btn:active {
    transform: translateY(0);
    box-shadow: none;
}
/* Tikkie button layout with small logo icon */
.mk-tikkie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.mk-tikkie-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mk-tikkie-icon img {
    display: block;
    width: 100%;
    height: 100%;
}

.mk-tikkie-label {
    line-height: 1;
}

/* Optional: make WhatsApp button a black pill (no blue link) */
.mk-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 999px;
    background-color: #000000;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.85rem;
    text-decoration: none;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease;
}

.mk-whatsapp-btn:hover,
.mk-whatsapp-btn:focus {
    background-color: #111111;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.mk-whatsapp-btn:active {
    transform: translateY(0);
    box-shadow: none;
}
/* Tikkie text + small icon */
.mk-pricing-actions {
    text-align: left;
}

.mk-tikkie-text {
    margin: 0 0 6px;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

.mk-tikkie-icon-link {
    display: inline-block;
}

.mk-tikkie-icon-link img {
    display: block;
    width: 40px;   /* small icon size */
    height: auto;
}
/* Deposit callout on Sessions page */
.mk-deposit-callout {
    margin-top: 26px;
    padding: 18px 18px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.5);
}

.mk-deposit-label {
    margin: 0 0 4px;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.mk-deposit-copy {
    margin: 0 0 10px;
    font-size: 0.92rem;
}

.mk-deposit-payrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.mk-deposit-note {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* tiny alignment tweak for deposit Tikkie icon */
.mk-tikkie-icon-link img {
    display: block;
    width: 40px;
    height: auto;
}
/* Deposit block – Sessions page */
.mk-deposit-block {
    margin-top: 30px;
    padding: 18px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: radial-gradient(circle at top left, rgba(255,255,255,0.06), transparent 55%);
}

.mk-deposit-title {
    font-size: 1.05rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.mk-deposit-text {
    margin: 0 0 8px;
}

.mk-deposit-text-small {
    font-size: 0.9rem;
    opacity: 0.9;
}

.mk-deposit-action {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mk-deposit-footnote {
    margin-top: 12px;
    font-size: 0.85rem;
    opacity: 0.85;
}

/* make deposit Tikkie icon small and clean */
.mk-deposit-icon-link img {
    display: block;
    width: 40px;      /* adjust smaller/larger if you want */
    height: auto;
}

/* reuse text style from video page if needed */
.mk-tikkie-text {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}
/* Elegant deposit block – Sessions page */
.mk-deposit-block {
    margin-top: 32px;
    padding: 20px 22px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: radial-gradient(circle at top left, rgba(255,255,255,0.06), transparent 55%);
    box-shadow: 0 0 26px rgba(0, 0, 0, 0.65);
}

/* script heading – same feeling as logo (Great Vibes) */
.mk-script-heading {
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-size: 2.1rem;
    letter-spacing: 0.04em;
}

.mk-deposit-title {
    margin: 0 0 4px;
}

/* paragraphs reuse mk-about-copy font; only spacing is adjusted */
.mk-deposit-paragraph {
    margin-top: 6px;
    margin-bottom: 6px;
}

.mk-deposit-action {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mk-tikkie-text {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.mk-deposit-icon-link img {
    display: block;
    width: 34px;    /* small, icon-like */
    height: auto;
}

.mk-deposit-footnote {
    margin-top: 10px;
    font-size: 0.86rem;
    opacity: 0.9;
}
/* Deposit block – integrated, same typography as page heading/text */
.mk-deposit-block {
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

/* use same font as mk-about-title, just slightly smaller */
.mk-deposit-heading {
    font-size: 1.8rem;
    margin: 0 0 6px;
}

/* paragraphs already use mk-about-copy font; just tighten spacing */
.mk-deposit-paragraph {
    margin-top: 4px;
    margin-bottom: 4px;
}

.mk-deposit-action {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mk-tikkie-text {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.mk-deposit-icon-link img {
    display: block;
    width: 32px;   /* small icon */
    height: auto;
}

.mk-deposit-footnote {
    margin-top: 10px;
    font-size: 0.86rem;
    opacity: 0.9;
}
/* Deposit block – integrated, same typography as page heading/text */
.mk-deposit-block {
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

/* use same font as mk-about-title, just slightly smaller */
.mk-deposit-heading {
    font-size: 1.8rem;
    margin: 0 0 6px;
}

/* paragraphs already use mk-about-copy font; just tighten spacing */
.mk-deposit-paragraph {
    margin-top: 4px;
    margin-bottom: 4px;
}

.mk-deposit-action {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mk-tikkie-text {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.mk-deposit-icon-link img {
    display: block;
    width: 32px;   /* small icon */
    height: auto;
}

.mk-deposit-footnote {
    margin-top: 10px;
    font-size: 0.82rem;
    opacity: 0.9;
    letter-spacing: 0.04em;
}

/* asterisk mark for the note */
.mk-footnote-mark {
    font-weight: 700;
    margin-right: 4px;
    font-size: 0.78rem;
    vertical-align: text-top;
}
/* Possibilities block – same style family as deposit section */
.mk-possibilities-block {
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}
/* Deposit block – integrated, same typography as page heading/text */
.mk-deposit-block {
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

/* use same font as mk-about-title, just slightly smaller */
.mk-deposit-heading {
    font-size: 1.8rem;
    margin: 0 0 6px;
}

/* paragraphs already use mk-about-copy font; just tighten spacing */
.mk-deposit-paragraph {
    margin-top: 4px;
    margin-bottom: 4px;
}

.mk-deposit-action {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mk-tikkie-text {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.mk-deposit-icon-link img {
    display: block;
    width: 32px;   /* small icon */
    height: auto;
}

.mk-deposit-footnote {
    margin-top: 10px;
    font-size: 0.82rem;
    opacity: 0.9;
    letter-spacing: 0.04em;
}

/* asterisk mark for the note */
.mk-footnote-mark {
    font-weight: 700;
    margin-right: 4px;
    font-size: 0.78rem;
    vertical-align: text-top;
}

/* Possibilities block – own elegant card, with breathing space */
.mk-possibilities-block {
    margin-top: 40px;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent 55%);
}
/* ===== Footer – luxury layout with AmsterCode credit ===== */
.mk-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 18px 24px;
    background: #050505;
}

.mk-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mk-footer-left {
    max-width: 640px;
}

.mk-footer-note {
    margin: 0 0 4px;
    font-size: 0.86rem;
    opacity: 0.82;
}

.mk-footer-copy {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.75;
}

.mk-footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* AmsterCode credit badge */
.mk-footer-crafted {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: radial-gradient(circle at top left, rgba(255,255,255,0.1), transparent 60%);
    text-decoration: none;
    cursor: pointer;
}

.mk-footer-crafted-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    opacity: 0.85;
}

.mk-footer-crafted-brand {
    font-size: 0.88rem;
    font-weight: 600;
}

/* small glow on hover */
.mk-footer-crafted:hover {
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.25);
}

/* Stack footer on mobile */
@media (max-width: 640px) {
    .mk-footer-inner {
        align-items: flex-start;
    }
    .mk-footer-right {
        justify-content: flex-start;
    }
}

/* ===== Cookie banner ===== */
.mk-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.mk-cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mk-cookie-text {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.85;
}

.mk-cookie-button {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid #ffffff;
    background: #000000;
    color: #ffffff;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
}

.mk-cookie-button:hover {
    background: #111111;
}
/* ===== Restored luxury footer (matches original look) ===== */
.mk-footer {
    background: radial-gradient(circle at top center, #111111 0%, #050505 35%, #000000 100%);
    padding: 40px 20px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.mk-footer-panel {
    max-width: 900px;
    margin: 0 auto 18px;
    text-align: left;
}

.mk-footer-logo {
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-size: 2.2rem;
    margin: 0 0 4px;
}

.mk-footer-tagline {
    margin: 0 0 18px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.mk-footer-nav {
    margin-bottom: 16px;
}

.mk-footer-nav a {
    display: inline-block;
    margin-right: 16px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    text-decoration: none;
}

.mk-footer-nav a:last-child {
    margin-right: 0;
}

.mk-footer-text {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* bottom line + AmsterCode credit */
.mk-footer-bottom {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mk-footer-copy {
    margin: 0;
    font-size: 0.78rem;
    opacity: 0.8;
}

/* small elegant badge for AmsterCode */
.mk-footer-crafted {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    text-decoration: none;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.10), transparent 60%);
    font-size: 0.75rem;
}

.mk-footer-crafted-label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    opacity: 0.85;
}

.mk-footer-crafted-brand {
    font-weight: 600;
}

.mk-footer-crafted:hover {
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
}

/* stack items nicely on mobile */
@media (max-width: 640px) {
    .mk-footer-panel {
        text-align: left;
    }
    .mk-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== Cookie banner (same behavior, clean style) ===== */
.mk-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.mk-cookie-banner-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mk-cookie-text {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.85;
}

.mk-cookie-button {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid #ffffff;
    background: #000000;
    color: #ffffff;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
}

.mk-cookie-button:hover {
    background: #111111;
}
/* ===== Luxury monochrome footer – all white links, glowing AmsterCode pill ===== */
.mk-footer {
    background: radial-gradient(circle at top center, #111111 0%, #050505 35%, #000000 100%);
    padding: 40px 20px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

/* ensure ALL footer links are white, no blue/purple */
.mk-footer a,
.mk-footer a:visited,
.mk-footer a:active {
    color: #ffffff;
    text-decoration: none;
}

.mk-footer a:hover,
.mk-footer a:focus {
    color: #ffffff;
}

/* main footer panel */
.mk-footer-panel {
    max-width: 900px;
    margin: 0 auto 18px;
    text-align: left;
}

/* handwritten logo on desktop + mobile */
.mk-footer-logo {
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-size: 2.2rem;
    margin: 0 0 4px;
}

.mk-footer-tagline {
    margin: 0 0 18px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* footer nav – white, spaced, uppercase */
.mk-footer-nav {
    margin-bottom: 16px;
}

.mk-footer-nav a {
    display: inline-block;
    margin-right: 16px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.mk-footer-nav a:last-child {
    margin-right: 0;
}

.mk-footer-text {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* bottom line + credit */
.mk-footer-bottom {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mk-footer-copy {
    margin: 0;
    font-size: 0.78rem;
    opacity: 0.8;
}

/* AmsterCode glowing pill – small, elegant, white */
.mk-footer-crafted {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: radial-gradient(circle at top left, rgba(255,255,255,0.16), rgba(255,255,255,0.02));
    box-shadow:
        0 0 12px rgba(255, 255, 255, 0.25),
        0 0 2px rgba(255, 255, 255, 0.9) inset;
    text-decoration: none;
    color: #ffffff;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.85);
}

.mk-footer-crafted-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0.9;
}

.mk-footer-crafted-brand {
    font-size: 0.86rem;
    font-weight: 600;
}

/* subtle hover motion, brighter glow */
.mk-footer-crafted:hover,
.mk-footer-crafted:focus {
    box-shadow:
        0 0 18px rgba(255, 255, 255, 0.40),
        0 0 3px rgba(255, 255, 255, 1) inset;
    transform: translateY(-1px);
}

/* stack nicely on mobile – logo still handwritten */
@media (max-width: 640px) {
    .mk-footer-panel {
        text-align: left;
    }
    .mk-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== Cookie banner (unchanged style, monochrome) ===== */
.mk-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.mk-cookie-banner-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mk-cookie-text {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.85;
}

.mk-cookie-button {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid #ffffff;
    background: #000000;
    color: #ffffff;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
}

.mk-cookie-button:hover {
    background: #111111;
}
/* ===========================
   MOBILE NAV OVERLAY (<= 900px)
   =========================== */
@media (max-width: 900px) {
    /* Make sure header can host fixed nav toggle correctly */
    .mk-header {
        position: relative;
        z-index: 9900;
    }

    /* Hamburger visible on mobile (if not already) */
    .mk-nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        width: 40px;
        height: 40px;
        border: 0;
        background: transparent;
        cursor: pointer;
        z-index: 10010;
    }

    .mk-nav-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: #ffffff;
        border-radius: 999px;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .mk-nav-toggle.is-active span:first-child {
        transform: translateY(4px) rotate(45deg);
    }

    .mk-nav-toggle.is-active span:last-child {
        transform: translateY(-4px) rotate(-45deg);
    }

    /* Body overlay when menu open */
    body.mk-nav-open {
        overflow: hidden;
    }

    body.mk-nav-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 9990;
    }

    /* Mobile nav panel */
    .mk-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 78%;
        max-width: 320px;
        height: 100vh;
        display: none; /* JS forces to block when open */
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 24px 24px;
        background: #000000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
        z-index: 10020;
        text-align: left;
    }

    .mk-nav a {
        display: block;
        width: 100%;
        padding: 10px 0;
        margin: 0;
        color: #f5f5f5;
        text-decoration: none;
        font-size: 0.98rem;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mk-nav a:last-child {
        border-bottom: none;
    }

    .mk-nav a:hover {
        color: #ffffff;
        border-bottom-color: rgba(255, 255, 255, 0.25);
    }
}

/* ===========================
   DESKTOP RESET (>= 901px)
   =========================== */
@media (min-width: 901px) {
    .mk-nav {
        position: static;
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }

    body.mk-nav-open::before {
        content: none;
    }
}
