/* Moogco Brand: Forest #1F3F36, Sage #3D7A6A, Terracotta #C5543E,
   Dusty Rose #DAACAD, Cream #F7F4EF, Sand #E5D7CA, Almost Black #2A2A2A */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:wght@400;500;600;700&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { min-height: 100%; }
body { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
       background: #F7F4EF; color: #2A2A2A;
       display: flex; flex-direction: column; min-height: 100vh; }
a { color: #1F3F36; text-decoration: none; }
a:hover { text-decoration: underline; }
code { font-family: 'SF Mono', Menlo, Consolas, monospace; font-size: 0.92em;
       background: #f0eae3; padding: 1px 5px; border-radius: 3px; }

/* ============ TOPBAR ============ */
.topbar { background: #1F3F36; color: white; padding: 14px 28px;
          display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
          box-shadow: 0 2px 8px rgba(31,63,54,0.12);
          border-bottom: 3px solid #3D7A6A; }
.topbar .brand { display: flex; align-items: center; gap: 12px; }
.topbar .brand a { display: flex; align-items: center; line-height: 1; }
.topbar .brand .brand-logo { height: 38px; width: auto; display: block; }
.topbar .brand .tagline { font-family: 'DM Sans', sans-serif;
                          font-size: 11.5px; opacity: 0.7; font-weight: 600;
                          padding-left: 12px; letter-spacing: 0.4px;
                          text-transform: uppercase;
                          border-left: 1px solid rgba(255,255,255,0.18); }
.topbar nav { display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
              margin-left: auto; }
.topbar nav a { color: rgba(255,255,255,0.85); font-size: 13px;
                font-weight: 500; transition: color 0.15s; }
.topbar nav a:hover { color: white; text-decoration: none; }
.topbar nav .who { font-size: 12px; opacity: 0.6; padding-left: 12px;
                   border-left: 1px solid rgba(255,255,255,0.2); }
.topbar nav .logout { color: #DAACAD; font-weight: 600; }

/* ============ MAIN ============ */
.container { max-width: 1240px; margin: 0 auto; padding: 28px 24px;
             flex: 1; width: 100%; }
h1 { color: #1F3F36; font-size: 30px; margin-bottom: 6px;
     font-family: 'DM Serif Display', Georgia, serif; line-height: 1.15;
     font-weight: normal; letter-spacing: -0.01em; }
h2 { color: #1F3F36; font-size: 19px; margin: 24px 0 14px;
     font-family: 'DM Serif Display', Georgia, serif; font-weight: normal; }
.subtitle { color: #555; font-size: 14px; margin-bottom: 24px; line-height: 1.5;
            max-width: 720px; }

/* ============ FLASH ============ */
.flash { padding: 12px 16px; border-radius: 6px; margin-bottom: 12px;
         font-size: 14px; }
.flash-success { background: #d4edda; color: #155724; border-left: 3px solid #155724; }
.flash-error   { background: #f8d7da; color: #721c24; border-left: 3px solid #721c24; }
.flash-warning { background: #fff3cd; color: #856404; border-left: 3px solid #856404; }

/* ============ CARDS / KPI ============ */
.card { background: white; padding: 26px; border-radius: 10px;
        box-shadow: 0 1px 3px rgba(31,63,54,0.06);
        border: 1px solid #ece5dc; margin-bottom: 18px; }
.info-card { background: #ECF3F0; padding: 14px 18px; border-radius: 8px;
             border-left: 3px solid #3D7A6A; font-size: 13px;
             color: #2A2A2A; margin: 14px 0 18px; line-height: 1.6; }
.info-card strong { color: #1F3F36; font-weight: 600; }

.kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 14px; margin-bottom: 24px; }
.kpi { background: white; padding: 18px; border-radius: 10px;
       border-left: 4px solid #3D7A6A;
       box-shadow: 0 1px 3px rgba(31,63,54,0.04);
       transition: transform 0.1s; }
.kpi:hover { transform: translateY(-1px); box-shadow: 0 2px 6px rgba(31,63,54,0.08); }
.kpi .label { font-size: 11px; color: #666; text-transform: uppercase;
              letter-spacing: 0.6px; font-weight: 600; }
.kpi .value { font-size: 26px; font-weight: 700; color: #1F3F36; margin-top: 6px;
              font-family: 'DM Serif Display', Georgia, serif; line-height: 1.1; }

/* ============ TABLES ============ */
table { width: 100%; background: white; border-collapse: collapse;
        border-radius: 10px; overflow: hidden;
        box-shadow: 0 1px 3px rgba(31,63,54,0.05);
        border: 1px solid #ece5dc; margin-bottom: 16px; }
th { background: #1F3F36; color: white; text-align: left; padding: 13px 14px;
     font-size: 12px; font-weight: 600; letter-spacing: 0.3px;
     text-transform: uppercase; }
td { padding: 12px 14px; border-bottom: 1px solid #f4f0e9; font-size: 13px;
     vertical-align: middle; }
tr:hover td { background: #FAF8F4; }
tr:last-child td { border-bottom: none; }
td.num { text-align: right; font-variant-numeric: tabular-nums; }
tfoot td { background: #FAF8F4; font-weight: 600; border-top: 2px solid #1F3F36; }

/* ============ FORMS ============ */
form .field { margin-bottom: 16px; }
form label { display: block; font-size: 13px; color: #444;
             margin-bottom: 5px; font-weight: 600; }
form input[type=text], form input[type=email], form input[type=password],
form input[type=number], form input[type=url], form input[type=file],
form textarea, form select {
    width: 100%; padding: 11px 13px; border: 1px solid #d5cfc4; border-radius: 7px;
    font-size: 14px; font-family: inherit; background: white; color: #2A2A2A;
    transition: border-color 0.15s, box-shadow 0.15s;
}
form input[type=file] { padding: 8px 13px; font-size: 13px; cursor: pointer; }
form textarea { resize: vertical; min-height: 90px; line-height: 1.5; }
form input:focus, form textarea:focus, form select:focus {
    outline: none; border-color: #3D7A6A;
    box-shadow: 0 0 0 3px rgba(61,122,106,0.15);
}
form input:disabled { background: #f5f1ea; color: #888; cursor: not-allowed; }
form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { form .row { grid-template-columns: 1fr; } }

/* ============ BUTTONS ============ */
.btn { display: inline-block; background: #1F3F36; color: white !important;
       padding: 11px 20px; border: none; border-radius: 7px;
       font-size: 14px; font-weight: 600; cursor: pointer;
       text-decoration: none !important; font-family: inherit;
       transition: background 0.15s, transform 0.05s;
       letter-spacing: 0.2px; }
.btn:hover { background: #2a5448; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-secondary { background: #E5D7CA; color: #1F3F36 !important; }
.btn-secondary:hover { background: #d8c5b3; }
.btn-danger { background: #C5543E; }
.btn-danger:hover { background: #a8442f; }
.btn-sm { padding: 7px 12px; font-size: 12px; }

/* ============ BADGES ============ */
.badge { display: inline-block; padding: 4px 9px; border-radius: 4px;
         font-size: 10.5px; font-weight: 700; text-transform: uppercase;
         letter-spacing: 0.4px; }
.badge-pending  { background: #fff3cd; color: #856404; }
.badge-pending_review { background: #ffe5d0; color: #8a4a00; }
.badge-approved { background: #d4edda; color: #155724; }
.badge-live     { background: #cce5ff; color: #004085; }
.badge-rejected { background: #f8d7da; color: #721c24; }
.badge-cancelled { background: #f8d7da; color: #721c24; }
.badge-new      { background: #fff3cd; color: #856404; }
.badge-acknowledged { background: #cce5ff; color: #004085; }
.badge-shipped  { background: #d4edda; color: #155724; }
.badge-delivered { background: #cfe9ff; color: #003a6f; }
.badge-suspended { background: #e2e3e5; color: #383d41; }

/* ============ TOOLBAR ============ */
.toolbar { display: flex; gap: 10px; margin-bottom: 14px; flex-wrap: wrap;
           align-items: center; }
.toolbar .filters { display: flex; gap: 6px; flex-wrap: wrap; }
.toolbar .filters a { background: white; padding: 7px 13px; border-radius: 5px;
                      font-size: 12px; color: #666; font-weight: 500;
                      border: 1px solid #ece5dc; }
.toolbar .filters a:hover { background: #FAF8F4; text-decoration: none;
                            color: #1F3F36; }
.toolbar .filters a.active { background: #1F3F36; color: white;
                             border-color: #1F3F36; }

/* ============ AUTH PAGES ============ */
.auth-wrap { display: flex; align-items: center; justify-content: center;
             min-height: calc(100vh - 80px); padding: 40px 20px; }
.auth-card { max-width: 440px; width: 100%; background: white;
             padding: 40px 36px; border-radius: 14px;
             box-shadow: 0 6px 36px rgba(31,63,54,0.08);
             border: 1px solid #ece5dc; }
.auth-card .auth-brand { text-align: center; margin-bottom: 22px;
                          display: flex; flex-direction: column; align-items: center;
                          gap: 10px; }
.auth-card .auth-brand .auth-logo { width: 180px; max-width: 70%; height: auto; }
.auth-card .auth-brand .tag  { font-size: 12px; color: #666; letter-spacing: 0.5px;
                                text-transform: uppercase; font-weight: 600; }
.auth-card h1 { text-align: center; margin-bottom: 6px; font-size: 22px; }
.auth-card .sub { text-align: center; color: #666; margin-bottom: 22px;
                  font-size: 14px; }
.auth-card .full-btn { width: 100%; padding: 13px; }
.auth-card .switch { text-align: center; margin-top: 18px; font-size: 13px;
                     color: #666; }
.signup-card { max-width: 680px; }

/* ============ FOOTER ============ */
.footer { background: #1F3F36; color: rgba(255,255,255,0.7);
          margin-top: 40px;
          border-top: 1px solid rgba(255,255,255,0.06); }
.footer a { color: rgba(255,255,255,0.85); text-decoration: none; }
.footer a:hover { color: #DAACAD; }

/* Newsletter / partner callout above footer grid */
.footer-newsletter { background: linear-gradient(135deg, #2a5448 0%, #1F3F36 100%);
                     padding: 36px 28px;
                     border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-newsletter-inner { max-width: 1240px; margin: 0 auto;
                            display: flex; align-items: center; justify-content: space-between;
                            gap: 32px; flex-wrap: wrap; }
.footer-newsletter h4 { font-family: 'DM Serif Display', serif; font-weight: normal;
                         font-size: 22px; color: white; margin-bottom: 6px; }
.footer-newsletter p  { font-size: 14px; line-height: 1.55;
                         color: rgba(255,255,255,0.78); max-width: 580px; }
.footer-newsletter .btn { background: #DAACAD; color: #1F3F36 !important;
                           padding: 13px 26px; font-size: 14px;
                           white-space: nowrap; }
.footer-newsletter .btn:hover { background: #c89393; }

/* Main grid */
.corporate-footer .footer-inner { max-width: 1240px; margin: 0 auto;
                                    padding: 50px 28px 36px;
                                    display: grid;
                                    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
                                    gap: 50px; }
.corporate-footer .footer-brand .footer-logo { width: 180px; height: auto;
                                                  margin-bottom: 14px; display: block; }
.corporate-footer .footer-tagline { font-family: 'DM Serif Display', serif;
                                      font-size: 17px; color: white; margin-bottom: 10px;
                                      letter-spacing: -0.01em; }
.corporate-footer .footer-mission { font-size: 13px; line-height: 1.6;
                                      color: rgba(255,255,255,0.65);
                                      max-width: 320px; margin-bottom: 18px; }
.corporate-footer .footer-col h5 { color: white; font-size: 12.5px;
                                     text-transform: uppercase; letter-spacing: 0.8px;
                                     margin-bottom: 14px; font-weight: 700; }
.corporate-footer .footer-col a { display: block; padding: 5px 0; font-size: 13.5px;
                                    color: rgba(255,255,255,0.78); }
.corporate-footer .footer-col a:hover { color: white; text-decoration: none; }
.corporate-footer .footer-entity { margin-bottom: 18px; }
.corporate-footer .footer-entity strong { display: block; color: white;
                                            font-size: 13.5px; margin-bottom: 6px;
                                            font-weight: 700; }
.corporate-footer .footer-entity p { font-size: 12.5px; line-height: 1.55;
                                       color: rgba(255,255,255,0.65); margin: 0 0 6px; }
.corporate-footer .footer-entity a { padding: 0; display: inline; }

/* Social icons */
.footer-social { display: flex; gap: 10px; }
.footer-social a { display: flex; align-items: center; justify-content: center;
                    width: 36px; height: 36px; border-radius: 50%;
                    background: rgba(255,255,255,0.08);
                    color: white; padding: 0;
                    transition: background 0.15s, transform 0.1s; }
.footer-social a:hover { background: #DAACAD; color: #1F3F36;
                          transform: translateY(-1px); text-decoration: none; }
.footer-social a svg { width: 17px; height: 17px; }

/* Trust strip */
.footer-trust-row { background: rgba(0,0,0,0.18);
                     border-top: 1px solid rgba(255,255,255,0.05);
                     border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-trust-inner { max-width: 1240px; margin: 0 auto;
                       padding: 16px 28px;
                       display: flex; gap: 24px; flex-wrap: wrap;
                       justify-content: center;
                       font-size: 11.5px; color: rgba(255,255,255,0.55); }
.footer-trust-inner span strong { color: rgba(255,255,255,0.85); font-weight: 700; }

/* Legal bar */
.corporate-footer .footer-bottom { padding: 18px 28px;
                                     font-size: 12px; color: rgba(255,255,255,0.55); }
.footer-bottom-inner { max-width: 1240px; margin: 0 auto;
                        display: flex; justify-content: space-between;
                        align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-bottom-inner .fb-copy strong { color: rgba(255,255,255,0.8); }
.footer-bottom-inner .fb-copy em { color: #DAACAD; font-style: normal; }
.footer-bottom-inner .fb-links a { color: rgba(255,255,255,0.65); margin: 0 2px; }
.footer-bottom-inner .fb-links a:hover { color: white; }
.footer-bottom-inner .fb-links .sep { color: rgba(255,255,255,0.25); margin: 0 2px; }

@media (max-width: 1024px) {
  .corporate-footer .footer-inner { grid-template-columns: 1.4fr 1fr 1fr;
                                       gap: 36px; }
  .corporate-footer .footer-col-wide { grid-column: 1 / -1;
                                          display: grid;
                                          grid-template-columns: 1fr 1fr;
                                          gap: 30px;
                                          padding-top: 30px;
                                          border-top: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 700px) {
  .footer-newsletter-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .corporate-footer .footer-inner { grid-template-columns: 1fr;
                                       gap: 30px; padding: 36px 22px 24px; }
  .corporate-footer .footer-col-wide { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* ============ MISC ============ */
.thumb { width: 50px; height: 50px; object-fit: cover; border-radius: 5px;
         vertical-align: middle; margin-right: 8px;
         border: 1px solid #ece5dc; }
.title-cell { max-width: 360px; }
.muted { color: #888; font-size: 12px; }
.form-inline { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.form-inline input { flex: 1; padding: 7px 10px; font-size: 13px; min-width: 80px; }
.form-inline button { padding: 7px 12px; font-size: 12px; }

pre { background: #f5f0e8; padding: 14px; border-radius: 6px;
      overflow-x: auto; font-size: 12px; line-height: 1.5;
      font-family: 'SF Mono', Menlo, Consolas, monospace;
      border: 1px solid #ece5dc; }

@media (max-width: 768px) {
  .container { padding: 18px 14px; }
  h1 { font-size: 24px; }
  .topbar { padding: 12px 14px; gap: 14px; }
  .topbar nav { gap: 12px; }
  .topbar nav a { font-size: 12px; }
  .auth-card { padding: 28px 22px; }
}

/* ============ WHITE-LABEL UPSELL CARD ============ */
.wl-card { background: linear-gradient(135deg, #ECF3F0 0%, #FAF8F4 100%);
            border: 1.5px solid #3D7A6A; border-radius: 12px;
            padding: 22px 24px;
            box-shadow: 0 4px 16px rgba(61,122,106,0.08); }
.wl-badge { display: inline-block; background: #C5543E; color: white;
             font-size: 10px; font-weight: 700; text-transform: uppercase;
             letter-spacing: 0.5px; padding: 3px 8px; border-radius: 4px;
             margin-left: 6px; vertical-align: 1px; }
.wl-benefits { margin-top: 16px; padding-top: 16px;
                border-top: 1px solid rgba(61,122,106,0.18);
                display: flex; flex-direction: column; gap: 9px; }
.wl-bf { display: flex; gap: 10px; font-size: 13px; line-height: 1.55;
          color: #2A2A2A; align-items: flex-start; }
.wl-bf .wl-icn { display: inline-flex; align-items: center; justify-content: center;
                  width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%;
                  background: #1F3F36; color: white; font-size: 11px;
                  font-weight: 700; }
.wl-bf strong { color: #1F3F36; font-weight: 700; }

/* ============ MISSION (emotional) ============ */
.mission-band { background:
                  linear-gradient(135deg, #1F3F36 0%, #2a5448 100%);
                color: white; padding: 100px 24px;
                position: relative; overflow: hidden; }
.mission-band::before { content: ''; position: absolute; left: -10%; top: -50%;
                         width: 700px; height: 700px; border-radius: 50%;
                         background: radial-gradient(circle, rgba(218,172,173,0.18), transparent 60%); }
.mission-band::after { content: ''; position: absolute; right: -15%; bottom: -40%;
                        width: 700px; height: 700px; border-radius: 50%;
                        background: radial-gradient(circle, rgba(61,122,106,0.4), transparent 65%); }
.mission-inner { position: relative; z-index: 1; max-width: 920px;
                  margin: 0 auto; text-align: center; }
.mission-inner .flag { display: inline-block; padding: 8px 18px;
                        background: rgba(255,255,255,0.1); border-radius: 999px;
                        font-size: 12px; letter-spacing: 0.6px; text-transform: uppercase;
                        font-weight: 700; color: #DAACAD; margin-bottom: 22px; }
.mission-inner h2 { font-family: 'DM Serif Display', Georgia, serif;
                     font-weight: normal;
                     font-size: clamp(34px, 5vw, 56px); line-height: 1.1;
                     color: white; margin-bottom: 24px; letter-spacing: -0.02em; }
.mission-inner h2 .accent { color: #DAACAD; font-style: italic; }
.mission-inner p { font-size: 17px; line-height: 1.75;
                    color: rgba(255,255,255,0.88); margin-bottom: 18px;
                    max-width: 720px; margin-left: auto; margin-right: auto; }
.mission-inner .mission-quote { font-family: 'DM Serif Display', serif;
                                 font-size: 22px; line-height: 1.55;
                                 color: white; padding: 30px 0;
                                 border-top: 1px solid rgba(255,255,255,0.12);
                                 border-bottom: 1px solid rgba(255,255,255,0.12);
                                 margin: 36px auto 0; max-width: 680px;
                                 font-style: italic; }

/* ============ FIELD VISIT ============ */
.visit-grid { display: grid; grid-template-columns: 1.1fr 1fr;
              gap: 50px; align-items: center; }
.visit-grid .copy h3 { font-family: 'DM Serif Display', serif; font-weight: normal;
                        font-size: clamp(28px, 3.5vw, 40px); color: #1F3F36;
                        line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.01em; }
.visit-grid .copy p { color: #444; line-height: 1.75; font-size: 15px;
                       margin-bottom: 14px; }
.visit-checklist { background: white; border-radius: 14px;
                    border: 1px solid #ece5dc; padding: 28px 30px;
                    box-shadow: 0 4px 24px rgba(31,63,54,0.06); }
.visit-checklist h4 { font-family: 'DM Serif Display', serif; font-weight: normal;
                       font-size: 19px; color: #1F3F36; margin-bottom: 14px;
                       padding-bottom: 12px; border-bottom: 1px solid #ece5dc; }
.visit-checklist ul { list-style: none; padding: 0; }
.visit-checklist li { padding: 9px 0 9px 30px; position: relative;
                       font-size: 14px; line-height: 1.55; color: #2A2A2A; }
.visit-checklist li::before { content: '✓'; position: absolute; left: 4px; top: 7px;
                                color: #3D7A6A; font-weight: 700; font-size: 16px; }
.visit-checklist li strong { color: #1F3F36; }

/* ============ INSTAGRAM REELS ============ */
.ig-grid { display: grid; gap: 18px;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.ig-card { background: white; border-radius: 12px;
            border: 1px solid #ece5dc; overflow: hidden;
            box-shadow: 0 2px 8px rgba(31,63,54,0.05); }
.ig-card iframe { display: block; width: 100%; height: 580px; border: none; }
.ig-empty { background: white; padding: 60px 30px; border-radius: 14px;
             border: 1px dashed #d8d2c5; text-align: center; }
.ig-empty .ic { font-size: 44px; margin-bottom: 16px; }
.ig-empty h4 { font-family: 'DM Serif Display', serif; font-size: 20px;
                color: #1F3F36; margin-bottom: 10px; }
.ig-empty p { color: #666; font-size: 14px; line-height: 1.6;
               margin-bottom: 18px; max-width: 460px;
               margin-left: auto; margin-right: auto; }

/* ============ ABOUT MOOGCO (corporate) ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr;
               gap: 50px; align-items: center; }
.about-grid .copy h3 { font-family: 'DM Serif Display', serif; font-weight: normal;
                         font-size: clamp(28px, 3.5vw, 40px); color: #1F3F36;
                         line-height: 1.15; margin-bottom: 16px; }
.about-grid .copy p { color: #444; line-height: 1.75; font-size: 15px;
                        margin-bottom: 14px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat { background: white; padding: 24px; border-radius: 10px;
              border: 1px solid #ece5dc;
              box-shadow: 0 2px 8px rgba(31,63,54,0.04); }
.about-stat .v { font-family: 'DM Serif Display', serif; font-size: 32px;
                  line-height: 1; color: #3D7A6A; margin-bottom: 6px; }
.about-stat .l { font-size: 12.5px; color: #555; line-height: 1.45; }

@media (max-width: 900px) {
  .visit-grid, .about-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ============ WAYFAIR-STYLE MARKETING ============ */

/* Top promo banner */
.promo-bar { background: #1F3F36; color: white; padding: 10px 24px;
             text-align: center; font-size: 13px; line-height: 1.4;
             display: flex; align-items: center; justify-content: center;
             gap: 14px; flex-wrap: wrap; }
.promo-bar strong { color: #DAACAD; }
.promo-bar .pb-cta { color: white; text-decoration: underline;
                      font-weight: 600; }
.promo-bar .pb-cta:hover { color: #DAACAD; }

/* Hero split */
.mk-hero-split { padding: 60px 24px 70px;
                  background: linear-gradient(180deg, #FAF8F4 0%, #F7F4EF 100%);
                  position: relative; overflow: hidden; }
.mk-hero-split-inner { max-width: 1240px; margin: 0 auto;
                        display: grid; grid-template-columns: 1.05fr 1fr;
                        gap: 60px; align-items: center; }
.mk-hero-split h1 { font-family: 'DM Serif Display', Georgia, serif;
                     font-weight: normal;
                     font-size: clamp(34px, 4.6vw, 56px); line-height: 1.05;
                     color: #1F3F36; margin: 18px 0 18px;
                     letter-spacing: -0.02em; }
.mk-hero-split h1 .accent { color: #C5543E; }
.mk-hero-split .mk-sub { font-size: 17px; line-height: 1.65; color: #444;
                          margin: 0 0 26px; max-width: 540px; }
.mk-hero-split .hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap;
                                 align-items: center; margin-bottom: 22px; }
.mk-hero-split .hero-cta-row .btn { padding: 14px 28px; font-size: 15px;
                                      box-shadow: 0 4px 14px rgba(31,63,54,0.18); }
.mk-hero-split .hero-trust { display: flex; gap: 24px; flex-wrap: wrap;
                              font-size: 12.5px; color: #666;
                              padding-top: 16px; border-top: 1px solid #ece5dc; }
.mk-hero-split .hero-trust span::before { content: '✓ '; color: #3D7A6A;
                                            font-weight: 700; }

/* Hero collage */
.hero-collage { display: grid; grid-template-columns: 1fr 1fr;
                grid-template-rows: repeat(3, 1fr); gap: 12px;
                aspect-ratio: 2 / 3; position: relative; }
.hero-collage .tile { background-size: contain; background-position: center;
                       background-repeat: no-repeat; background-color: #FAF8F4;
                       border-radius: 14px; overflow: hidden; position: relative;
                       box-shadow: 0 6px 20px rgba(31,63,54,0.12); }
.hero-collage .tile.t1 { grid-row: span 2; }
.hero-collage .tile-tag { position: absolute; bottom: 10px; left: 10px;
                           background: rgba(255,255,255,0.95);
                           padding: 5px 10px; border-radius: 5px;
                           font-size: 11px; font-weight: 700; color: #1F3F36;
                           box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.hero-collage .tile-tag .pp { color: #C5543E; }

/* Trust strip */
.trust-strip { background: white; border-top: 1px solid #ece5dc;
                border-bottom: 1px solid #ece5dc;
                padding: 26px 24px; }
.trust-strip-inner { max-width: 1240px; margin: 0 auto;
                      display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                      gap: 24px; }
.trust-item { display: flex; gap: 14px; align-items: center; }
.trust-item .ic { width: 44px; height: 44px; border-radius: 50%;
                   background: #ECF3F0; color: #1F3F36;
                   display: flex; align-items: center; justify-content: center;
                   font-size: 22px; flex-shrink: 0; font-weight: 700; }
.trust-item .lbl { font-size: 14px; font-weight: 700; color: #1F3F36;
                    line-height: 1.3; }
.trust-item .sub { font-size: 12px; color: #666; line-height: 1.4; margin-top: 2px; }

/* Product tile grid */
.tile-grid { display: grid; gap: 16px;
              grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.tile-prod { background: white; border-radius: 12px; overflow: hidden;
              border: 1px solid #ece5dc; cursor: default;
              transition: transform 0.18s, box-shadow 0.18s;
              display: flex; flex-direction: column; }
.tile-prod:hover { transform: translateY(-3px);
                    box-shadow: 0 10px 28px rgba(31,63,54,0.12); }
.tile-prod .img { aspect-ratio: 1 / 1; background-color: #FAF8F4;
                   background-position: center; background-size: contain;
                   background-repeat: no-repeat; position: relative; }
.tile-prod .badge-aov { position: absolute; top: 10px; left: 10px;
                         background: #C5543E; color: white;
                         padding: 4px 10px; border-radius: 4px;
                         font-size: 11px; font-weight: 700; letter-spacing: 0.3px;
                         text-transform: uppercase; }
.tile-prod .badge-cat { position: absolute; top: 10px; right: 10px;
                         background: rgba(255,255,255,0.95); color: #1F3F36;
                         padding: 4px 10px; border-radius: 4px;
                         font-size: 11px; font-weight: 700; }
.tile-prod .body { padding: 14px 16px 16px; flex: 1;
                    display: flex; flex-direction: column; }
.tile-prod .body h4 { font-size: 14px; line-height: 1.4; color: #1F3F36;
                       margin-bottom: 8px; min-height: 38px;
                       display: -webkit-box; -webkit-line-clamp: 2;
                       -webkit-box-orient: vertical; overflow: hidden; }
.tile-prod .price { font-family: 'DM Serif Display', Georgia, serif;
                     font-size: 20px; color: #1F3F36; line-height: 1; }
.tile-prod .pmeta { font-size: 12px; color: #666; margin-top: 4px; }

/* Section variants */
.mk-band-light { background: white; }
.mk-band-cream { background: #FAF8F4; }
.mk-band-mint  { background: #ECF3F0; }
.mk-band-dark  { background: #1F3F36; color: white; }
.mk-band-dark .mk-section-header h2 { color: white; }
.mk-band-dark .mk-section-header p  { color: rgba(255,255,255,0.85); }

/* Testimonial cards */
.test-grid { display: grid; gap: 18px;
              grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.test-card { background: white; padding: 28px 26px; border-radius: 12px;
              border: 1px solid #ece5dc;
              box-shadow: 0 2px 8px rgba(31,63,54,0.04);
              display: flex; flex-direction: column; gap: 14px; }
.test-card .quote { font-family: 'DM Serif Display', serif;
                     font-size: 18px; line-height: 1.5; color: #1F3F36;
                     position: relative; padding-top: 12px; }
.test-card .quote::before { content: '"'; position: absolute; top: -16px; left: -4px;
                              font-size: 64px; color: #DAACAD; line-height: 1;
                              font-family: serif; }
.test-card .who { display: flex; gap: 12px; align-items: center;
                   margin-top: auto; padding-top: 12px;
                   border-top: 1px solid #f0eae3; }
.test-card .avatar { width: 40px; height: 40px; border-radius: 50%;
                      background: linear-gradient(135deg, #3D7A6A, #1F3F36);
                      color: white; display: flex; align-items: center;
                      justify-content: center; font-weight: 700;
                      font-family: 'DM Serif Display', serif; flex-shrink: 0; }
.test-card .who .name { font-size: 13.5px; font-weight: 700; color: #1F3F36; }
.test-card .who .role { font-size: 12px; color: #777; }

/* FAQ accordion */
.faq { display: flex; flex-direction: column; gap: 10px;
        max-width: 820px; margin: 0 auto; }
.faq details { background: white; border: 1px solid #ece5dc;
                border-radius: 10px; padding: 18px 22px; cursor: pointer;
                transition: border-color 0.15s; }
.faq details:hover { border-color: #c9bfae; }
.faq details[open] { border-color: #3D7A6A; background: #FAF8F4; }
.faq summary { font-size: 15px; font-weight: 700; color: #1F3F36;
                list-style: none; cursor: pointer;
                display: flex; align-items: center; justify-content: space-between;
                gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 22px; color: #3D7A6A;
                       font-weight: 400; line-height: 1; flex-shrink: 0; }
.faq details[open] summary::after { content: '−'; }
.faq .faq-body { color: #444; font-size: 14px; line-height: 1.65;
                  margin-top: 12px; padding-top: 12px;
                  border-top: 1px solid #ece5dc; }
.faq .faq-body p { margin-bottom: 8px; }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* Mid CTA strip */
.cta-strip { background: linear-gradient(135deg, #1F3F36 0%, #2a5448 100%);
              padding: 56px 24px; text-align: center; color: white;
              position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; right: -12%; top: -50%;
                      width: 700px; height: 700px; border-radius: 50%;
                      background: radial-gradient(circle, rgba(218,172,173,0.3), transparent 65%); }
.cta-strip-inner { position: relative; z-index: 1; max-width: 800px;
                    margin: 0 auto; }
.cta-strip h3 { font-family: 'DM Serif Display', serif; font-weight: normal;
                 font-size: clamp(26px, 3vw, 34px); line-height: 1.2;
                 margin-bottom: 12px; }
.cta-strip p  { color: rgba(255,255,255,0.85); margin-bottom: 22px;
                 font-size: 15px; line-height: 1.6; }
.cta-strip .btn { background: white; color: #1F3F36 !important;
                   padding: 13px 28px; font-size: 15px; }
.cta-strip .btn:hover { background: #DAACAD; color: #1F3F36 !important; }

/* Brand story */
.brand-story { display: grid; grid-template-columns: 1fr 1fr;
                gap: 50px; align-items: center; }
.brand-story img.story-img { width: 100%; border-radius: 14px;
                              aspect-ratio: 4 / 5; object-fit: cover;
                              box-shadow: 0 8px 30px rgba(31,63,54,0.12); }
.brand-story h3 { font-family: 'DM Serif Display', serif; font-weight: normal;
                   font-size: clamp(28px, 3.5vw, 40px); line-height: 1.15;
                   color: #1F3F36; margin-bottom: 16px; letter-spacing: -0.01em; }
.brand-story p { color: #444; line-height: 1.75; font-size: 15px;
                  margin-bottom: 14px; }
.brand-story .stats-row { display: flex; gap: 28px; flex-wrap: wrap;
                            margin-top: 22px; padding-top: 22px;
                            border-top: 1px solid #ece5dc; }
.brand-story .stat-mini .v { font-family: 'DM Serif Display', serif;
                              font-size: 30px; color: #3D7A6A; line-height: 1; }
.brand-story .stat-mini .l { font-size: 12px; color: #666; margin-top: 4px; }

@media (max-width: 900px) {
  .mk-hero-split-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-collage { aspect-ratio: 4 / 3; max-width: 520px;
                  grid-template-rows: 1fr 1fr; }
  .hero-collage .tile.t1 { grid-row: span 2; }
  .hero-collage .tile-extra { display: none; }
  .brand-story { grid-template-columns: 1fr; gap: 30px; }
  .brand-story img.story-img { aspect-ratio: 3 / 2; max-height: 400px; }
}

/* ============ MARKETING LANDING PAGE ============ */
.topbar-marketing { position: sticky; top: 0; z-index: 50;
                    background: rgba(31,63,54,0.97);
                    backdrop-filter: saturate(180%) blur(8px); }
.topbar-marketing nav .nav-cta { background: #C5543E; padding: 8px 16px;
                                  border-radius: 6px; color: white;
                                  font-weight: 600; }
.topbar-marketing nav .nav-cta:hover { background: #a8442f; text-decoration: none; }

.marketing-main { width: 100%; }

/* HERO */
.mk-hero { position: relative; padding: 88px 24px 100px;
           background: radial-gradient(circle at 20% 0%, #ECF3F0 0%, #F7F4EF 60%);
           overflow: hidden; }
.mk-hero::before { content: ''; position: absolute; right: -8%; top: -8%;
                   width: 540px; height: 540px; border-radius: 50%;
                   background: radial-gradient(circle, rgba(218,172,173,0.32), transparent 70%);
                   z-index: 0; }
.mk-hero::after { content: ''; position: absolute; left: -10%; bottom: -20%;
                  width: 480px; height: 480px; border-radius: 50%;
                  background: radial-gradient(circle, rgba(61,122,106,0.18), transparent 70%);
                  z-index: 0; }
.mk-hero-inner { position: relative; z-index: 1; max-width: 1100px;
                 margin: 0 auto; text-align: center; }
.mk-eyebrow { display: inline-block; background: white; color: #1F3F36;
              padding: 7px 16px; border-radius: 999px; font-size: 12px;
              font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
              border: 1px solid #ece5dc; box-shadow: 0 2px 8px rgba(31,63,54,0.05); }
.mk-h1 { font-family: 'DM Serif Display', Georgia, serif; font-weight: normal;
         font-size: clamp(36px, 5.5vw, 64px); line-height: 1.05;
         color: #1F3F36; margin: 24px 0 18px; letter-spacing: -0.02em; }
.mk-h1 .accent { color: #3D7A6A; font-style: italic; }
.mk-sub { font-size: 18px; line-height: 1.65; color: #444; max-width: 720px;
          margin: 0 auto 32px; }
.mk-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
              margin-bottom: 18px; }
.mk-cta-row .btn { padding: 14px 26px; font-size: 15px; }
.mk-mini { font-size: 13px; color: #777; }
.mk-mini strong { color: #1F3F36; }

/* SECTION SHELL */
.mk-section { padding: 80px 24px; }
.mk-section-inner { max-width: 1100px; margin: 0 auto; }
.mk-section-header { text-align: center; margin-bottom: 50px; }
.mk-section-header .eyebrow { font-size: 12px; font-weight: 700;
                              letter-spacing: 1.5px; text-transform: uppercase;
                              color: #3D7A6A; }
.mk-section-header h2 { font-family: 'DM Serif Display', Georgia, serif;
                        font-weight: normal; font-size: clamp(28px, 3.5vw, 42px);
                        line-height: 1.15; color: #1F3F36;
                        margin: 8px 0 14px; letter-spacing: -0.01em; }
.mk-section-header p { color: #555; font-size: 16px; max-width: 640px;
                       margin: 0 auto; line-height: 1.65; }

/* STATS BAND */
.mk-stats { background: #1F3F36; color: white; padding: 70px 24px; }
.mk-stats-inner { max-width: 1100px; margin: 0 auto;
                  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                  gap: 30px; text-align: center; }
.mk-stat .num { font-family: 'DM Serif Display', Georgia, serif;
                font-size: clamp(36px, 4.5vw, 56px); line-height: 1;
                color: #DAACAD; margin-bottom: 10px; }
.mk-stat .lab { font-size: 14px; line-height: 1.45; opacity: 0.92;
                max-width: 220px; margin: 0 auto; }
.mk-stat .src { font-size: 11px; opacity: 0.55; margin-top: 6px; }

/* MARKET DETAIL: 2-column rows */
.mk-detail-row { display: grid; grid-template-columns: 1fr 1fr;
                  gap: 50px; align-items: center; margin-bottom: 70px; }
.mk-detail-row.flip { direction: rtl; }
.mk-detail-row.flip > * { direction: ltr; }
.mk-detail-row h3 { font-family: 'DM Serif Display', Georgia, serif;
                    font-weight: normal; font-size: 28px; line-height: 1.2;
                    color: #1F3F36; margin-bottom: 14px; }
.mk-detail-row p  { color: #444; line-height: 1.7; font-size: 15px;
                    margin-bottom: 12px; }
.mk-fact-card { background: white; padding: 30px; border-radius: 14px;
                 border: 1px solid #ece5dc; box-shadow: 0 4px 24px rgba(31,63,54,0.06); }
.mk-fact-card .big { font-family: 'DM Serif Display', Georgia, serif;
                      font-size: 56px; line-height: 1; color: #3D7A6A;
                      margin-bottom: 6px; }
.mk-fact-card .lbl { font-weight: 600; color: #1F3F36; margin-bottom: 8px; }
.mk-fact-card .desc { color: #666; font-size: 13px; line-height: 1.5; }
.mk-fact-card .source { color: #999; font-size: 11px; margin-top: 14px;
                         padding-top: 12px; border-top: 1px solid #f0eae3; }
.mk-fact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mk-fact-grid .mk-fact-card { padding: 22px; }
.mk-fact-grid .mk-fact-card .big { font-size: 36px; }

/* HOW IT WORKS */
.mk-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 22px; }
.mk-step { background: white; padding: 28px; border-radius: 12px;
           border: 1px solid #ece5dc; position: relative;
           box-shadow: 0 2px 8px rgba(31,63,54,0.04); }
.mk-step .n { position: absolute; top: -18px; left: 24px;
              width: 44px; height: 44px; border-radius: 50%; background: #3D7A6A;
              color: white; font-family: 'DM Serif Display', serif;
              font-size: 20px; display: flex; align-items: center;
              justify-content: center; box-shadow: 0 4px 10px rgba(61,122,106,0.25); }
.mk-step h4 { font-family: 'DM Serif Display', serif; font-weight: normal;
              font-size: 19px; color: #1F3F36; margin: 16px 0 8px; }
.mk-step p { color: #555; font-size: 13.5px; line-height: 1.6; }

/* WHAT YOU GET */
.mk-features { background: #ECF3F0; }
.mk-feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
                gap: 18px; }
.mk-feat { background: white; padding: 26px; border-radius: 12px;
           border: 1px solid rgba(31,63,54,0.06); }
.mk-feat .ic { width: 38px; height: 38px; border-radius: 10px;
                background: #1F3F36; color: white;
                display: flex; align-items: center; justify-content: center;
                font-size: 20px; margin-bottom: 14px; }
.mk-feat h4 { font-size: 16px; font-weight: 700; color: #1F3F36; margin-bottom: 6px; }
.mk-feat p { color: #555; font-size: 13.5px; line-height: 1.6; }

/* PARTNERSHIP */
.mk-partnership { background: #1F3F36; color: white; padding: 80px 24px;
                   position: relative; overflow: hidden; }
.mk-partnership::before { content: ''; position: absolute; right: -20%; top: -50%;
                           width: 900px; height: 900px; border-radius: 50%;
                           background: radial-gradient(circle, rgba(61,122,106,0.4), transparent 60%);
                           z-index: 0; }
.mk-partnership-inner { position: relative; z-index: 1; max-width: 1000px;
                         margin: 0 auto; }
.mk-partnership .mk-section-header h2 { color: white; }
.mk-partnership .mk-section-header p { color: rgba(255,255,255,0.85); }
.mk-partnership .mk-section-header .eyebrow { color: #DAACAD; }
.mk-split { display: grid; grid-template-columns: 1fr 1fr;
             gap: 0; background: rgba(255,255,255,0.07); border-radius: 14px;
             overflow: hidden; }
.mk-split > div { padding: 32px 30px; }
.mk-split > div + div { border-left: 1px solid rgba(255,255,255,0.1); }
.mk-split h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px;
                color: #DAACAD; margin-bottom: 8px; font-weight: 600; }
.mk-split .pct { font-family: 'DM Serif Display', serif; font-size: 64px;
                  line-height: 1; color: white; margin-bottom: 12px; }
.mk-split p { color: rgba(255,255,255,0.85); line-height: 1.65; font-size: 14px; }
.mk-example { background: white; color: #2A2A2A; padding: 30px;
              border-radius: 12px; margin-top: 30px; }
.mk-example h5 { font-family: 'DM Serif Display', serif; font-weight: normal;
                  font-size: 18px; color: #1F3F36; margin-bottom: 16px; }
.mk-example .calc-row { display: flex; justify-content: space-between; padding: 8px 0;
                         border-bottom: 1px dashed #ece5dc; font-size: 14px; }
.mk-example .calc-row.total { border-bottom: none; padding-top: 14px;
                              font-weight: 700; color: #1F3F36; font-size: 16px;
                              border-top: 2px solid #1F3F36; margin-top: 6px; }
.mk-example .calc-row span:last-child { font-variant-numeric: tabular-nums; }

/* WHO */
.mk-who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                gap: 16px; }
.mk-who { background: #FAF8F4; padding: 22px; border-radius: 10px;
          border-left: 3px solid #C5543E; }
.mk-who h4 { font-size: 15px; font-weight: 700; color: #1F3F36; margin-bottom: 6px; }
.mk-who p { color: #555; font-size: 13.5px; line-height: 1.55; }

/* FINAL CTA */
.mk-final { background: linear-gradient(135deg, #DAACAD 0%, #E5D7CA 100%);
             padding: 90px 24px; text-align: center; }
.mk-final h2 { font-family: 'DM Serif Display', serif; font-weight: normal;
                font-size: clamp(30px, 4vw, 46px); line-height: 1.15;
                color: #1F3F36; margin-bottom: 16px; max-width: 700px;
                margin-left: auto; margin-right: auto; }
.mk-final p { color: #444; font-size: 16px; margin-bottom: 26px;
               max-width: 560px; margin-left: auto; margin-right: auto;
               line-height: 1.6; }
.mk-final .btn { padding: 15px 32px; font-size: 16px; }

/* ============ SALES MODEL RADIO CARDS ============ */
.model-choice { display: flex; flex-direction: column; gap: 10px; }
.model-opt { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px;
             border: 1.5px solid #d8d2c5; border-radius: 9px; cursor: pointer;
             transition: border-color 0.15s, background 0.15s;
             background: white; }
.model-opt:hover { border-color: #3D7A6A; background: #FAF8F4; }
.model-opt input[type=radio] { margin: 4px 0 0 0; width: auto; flex-shrink: 0;
                                accent-color: #3D7A6A; transform: scale(1.15); }
.model-opt .opt-body { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.model-opt .opt-body strong { color: #1F3F36; font-size: 14px; font-weight: 600; }
.model-opt .opt-body small { color: #666; font-size: 12.5px; line-height: 1.5; font-weight: 400; }
.model-opt:has(input[type=radio]:checked) {
    border-color: #1F3F36; background: #ECF3F0;
    box-shadow: 0 0 0 3px rgba(31,63,54,0.06);
}

/* ============ TIMELINE & DATA TABLES (marketing extras) ============ */
.mk-timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
                gap: 14px; counter-reset: tl; }
.mk-tl-step { background: white; padding: 22px 22px 22px 56px;
              border-radius: 10px; border: 1px solid #ece5dc;
              position: relative; counter-increment: tl; }
.mk-tl-step::before { content: counter(tl);
              position: absolute; left: 16px; top: 22px;
              font-family: 'DM Serif Display', serif; font-size: 32px;
              line-height: 1; color: #DAACAD; }
.mk-tl-step .tl-when { font-size: 11px; color: #C5543E; font-weight: 700;
                        letter-spacing: 0.6px; text-transform: uppercase;
                        margin-bottom: 4px; }
.mk-tl-step h4 { font-size: 14px; color: #1F3F36; margin-bottom: 6px;
                  font-weight: 700; }
.mk-tl-step p  { font-size: 12.5px; line-height: 1.55; color: #555; }

.mk-table-wrap { overflow-x: auto; margin: 10px 0; }
.mk-table { width: 100%; background: white; border-radius: 10px;
             overflow: hidden; border: 1px solid #ece5dc;
             box-shadow: 0 1px 3px rgba(31,63,54,0.04); }
.mk-table th { background: #1F3F36; color: white; padding: 12px 14px;
                font-size: 12px; text-align: left; font-weight: 600;
                text-transform: uppercase; letter-spacing: 0.4px; }
.mk-table td { padding: 12px 14px; font-size: 13.5px;
                border-bottom: 1px solid #f4f0e9; vertical-align: middle; }
.mk-table tr:last-child td { border-bottom: none; }
.mk-table tr:hover td { background: #FAF8F4; }
.mk-table .num { text-align: right; font-variant-numeric: tabular-nums; }
.mk-table .pos { color: #155724; font-weight: 600; }
.mk-table .neg { color: #721c24; font-weight: 600; }

.mk-calendar { display: grid; grid-template-columns: repeat(12, 1fr);
                gap: 4px; margin-top: 16px; }
.mk-cal-month { background: #FAF8F4; padding: 14px 8px; text-align: center;
                 border-radius: 6px; border: 1px solid #ece5dc;
                 font-size: 11px; line-height: 1.4; }
.mk-cal-month.hot { background: linear-gradient(180deg, #C5543E, #a8442f);
                     color: white; border-color: #a8442f; }
.mk-cal-month.warm { background: linear-gradient(180deg, #DAACAD, #c89393);
                      color: #1F3F36; border-color: #c89393; }
.mk-cal-month .m { font-weight: 700; font-size: 12px; display: block;
                    margin-bottom: 3px; }
.mk-cal-month .e { font-size: 10px; opacity: 0.85; }
.mk-cal-legend { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 12px;
                  font-size: 12px; color: #666; }
.mk-cal-legend .dot { display: inline-block; width: 12px; height: 12px;
                       border-radius: 3px; margin-right: 5px;
                       vertical-align: middle; }

@media (max-width: 768px) {
  .mk-calendar { grid-template-columns: repeat(6, 1fr); }
}

/* ============ DRAG-DROP IMAGE UPLOAD ============ */
.dropzone { border: 2px dashed #c9bfae; border-radius: 12px;
            padding: 32px 20px; text-align: center; background: #FAF8F4;
            transition: all 0.2s; cursor: pointer; position: relative; }
.dropzone:hover, .dropzone.dragover {
    border-color: #3D7A6A; background: #ECF3F0; }
.dropzone .dz-icon { font-size: 36px; color: #3D7A6A; margin-bottom: 8px;
                     line-height: 1; }
.dropzone .dz-title { font-size: 15px; font-weight: 600; color: #1F3F36;
                      margin-bottom: 4px; }
.dropzone .dz-sub { font-size: 12px; color: #777; }
.dropzone input[type=file] { position: absolute; inset: 0; opacity: 0;
                              cursor: pointer; }
.dz-preview { display: grid;
              grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
              gap: 10px; margin-top: 14px; }
.dz-preview:empty { display: none; }
.dz-thumb { position: relative; padding-top: 100%; border-radius: 8px;
            background: #f5f0e8 center/cover no-repeat;
            border: 1px solid #ece5dc; overflow: hidden; }
.dz-thumb .rm { position: absolute; top: 4px; right: 4px;
                 width: 22px; height: 22px; border-radius: 50%;
                 background: rgba(31,63,54,0.85); color: white;
                 border: none; cursor: pointer; font-size: 14px;
                 display: flex; align-items: center; justify-content: center;
                 line-height: 1; padding: 0; }
.dz-thumb .rm:hover { background: #C5543E; }
.dz-thumb .name { position: absolute; bottom: 0; left: 0; right: 0;
                   background: rgba(0,0,0,0.55); color: white;
                   font-size: 10px; padding: 3px 6px;
                   white-space: nowrap; overflow: hidden;
                   text-overflow: ellipsis; }
.dz-status { font-size: 12px; color: #555; margin-top: 8px; text-align: center; }

@media (max-width: 768px) {
  .mk-hero { padding: 60px 18px 70px; }
  .mk-section { padding: 60px 18px; }
  .mk-stats { padding: 50px 18px; }
  .mk-detail-row { grid-template-columns: 1fr; gap: 30px; margin-bottom: 50px; }
  .mk-detail-row.flip { direction: ltr; }
  .mk-fact-grid { grid-template-columns: 1fr; }
  .mk-split { grid-template-columns: 1fr; }
  .mk-split > div + div { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }
}
