/* ============================================================
   MPTM & RTC 2025 — Design 2: Earthy Cream & Ochre
   All classes prefixed with mptstc_
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --mptstc-brown-dk:  #1a0f06;
  --mptstc-brown:     #2c1e0f;
  --mptstc-brown-md:  #5a3a20;
  --mptstc-ochre:     #c8962a;
  --mptstc-ochre-lt:  #e8b840;
  --mptstc-cream:     #f5efe4;
  --mptstc-cream-lt:  #faf6f0;
  --mptstc-sand:      #e8dfd0;
  --mptstc-border:    #e0d0b8;
  --mptstc-text:      #2c1e0f;
  --mptstc-text-md:   #5a3a20;
  --mptstc-text-muted:#9a7a5a;
  --mptstc-green-dk:  #2d5a27;
  --mptstc-blue-dk:   #2c4a6a;
  --mptstc-radius:    8px;
  --mptstc-transition:0.3s ease;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--mptstc-text);
  background: var(--mptstc-cream);
  overflow-x: hidden;
}

/* ── SCROLL ANIMATIONS ── */
.mptstc_reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.mptstc_reveal.mptstc_visible { opacity: 1; transform: translateY(0); }
.mptstc_reveal-delay-1 { transition-delay: 0.1s; }
.mptstc_reveal-delay-2 { transition-delay: 0.2s; }
.mptstc_reveal-delay-3 { transition-delay: 0.3s; }
.mptstc_reveal-delay-4 { transition-delay: 0.4s; }

/* ── PARENT HEADER (logo only, floats over the hero banner — not its own bar) ── */
.mptstc_parent-header {
  position: absolute; top: 0; left: 0; right: 0;
  background: transparent;
  padding: 18px 24px;
  display: flex; align-items: center;
  z-index: 200;
}
.mptstc_parent-logo-wrap { display: flex; align-items: center; gap: 10px; }
.mptstc_parent-logo-wrap img { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5)); }
.mptstc_parent-logo {
  width: 36px; height: 36px;
  background: var(--mptstc-ochre);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; color: var(--mptstc-brown-dk);
  font-weight: 700; text-align: center; line-height: 1.2; flex-shrink: 0;
}
.mptstc_parent-logo img { width: 30px; height: 30px; object-fit: contain; border-radius: 50%; }
.mptstc_parent-sitename { font-size: 14px; color: var(--mptstc-ochre); font-weight: 700; display: block; }
.mptstc_parent-sitelabel { font-size: 14px; color: rgba(255,255,255,0.5); display: block; }
.mptstc_parent-nav { display: flex; gap: 16px; flex-wrap: wrap; }
.mptstc_parent-nav a { color: rgba(255,255,255,0.95); font-size: 14px; text-decoration: none; transition: color var(--mptstc-transition); }
.mptstc_parent-nav a:hover { color: var(--mptstc-ochre); }
.mptstc_parent-search {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px; padding: 4px 10px;
  color: rgba(255,255,255,0.8); font-size: 14px; width: 180px; outline: none;
}
.mptstc_parent-search::placeholder { color: rgba(255,255,255,0.45); }

/* ── HERO ── */
.mptstc_hero {
  position: relative;
  height: 60vh; min-height: 260px; max-height: 700px;
  overflow: hidden; display: flex; align-items: flex-end;
}
.mptstc_hero-bg {
  position: absolute; inset: 0;
  background: url('../uploads/mptmhomepage.jpeg') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
@media (max-width: 768px) {
  .mptstc_hero-bg {
    background-image: url('../uploads/mobile-home-banner.jpg');
  }
}
.mptstc_hero-bg.mptstc_loaded { transform: scale(1); }
.mptstc_hero-overlay {
  position: absolute; inset: 0;
  /*background: linear-gradient(to right, rgba(26,15,6,0.9) 0%, rgba(26,15,6,0.52) 16%, rgba(26,15,6,0) 80%);*/
}
.mptstc_hero-content {
  position: relative; z-index: 2; padding: 28px 32px;
  animation: mptstc_heroIn 0.9s ease both;
}
@keyframes mptstc_heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mptstc_hero-eyebrow {
  font-size: 14px; color: var(--mptstc-ochre);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 8px; display: block;
}
.mptstc_hero-title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700; color: var(--mptstc-cream);
  font-family: Georgia, serif; line-height: 1.15; margin-bottom: 8px;
}
.mptstc_hero-title em { color: var(--mptstc-ochre); font-style: normal; }
.mptstc_hero-subtitle {
  font-size: clamp(11px, 1.5vw, 14px);
  color: rgba(245,239,228,0.78);
  max-width: 360px; line-height: 1.65; margin-bottom: 18px;
}
.mptstc_hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.mptstc_btn-primary {
  background: var(--mptstc-ochre); color: var(--mptstc-brown-dk);
  border: 2px solid var(--mptstc-ochre);
  padding: 9px 22px; font-size: 14px; font-weight: 700;
  border-radius: var(--mptstc-radius); cursor: pointer;
  transition: all var(--mptstc-transition); text-decoration: none; display: inline-block;
}
.mptstc_btn-primary:hover { background: var(--mptstc-ochre-lt); border-color: var(--mptstc-ochre-lt); color: var(--mptstc-brown-dk); transform: translateY(-1px); }
.mptstc_btn-outline {
  background: transparent; color: var(--mptstc-cream);
  border: 2px solid rgba(245,239,228,0.55);
  padding: 9px 22px; font-size: 14px; font-weight: 600;
  border-radius: var(--mptstc-radius); cursor: pointer;
  transition: all var(--mptstc-transition); text-decoration: none; display: inline-block;
}
.mptstc_btn-outline:hover { background: rgba(255,255,255,0.1); color: var(--mptstc-cream); transform: translateY(-1px); }
.mptstc_hero-dots {
  position: absolute; bottom: 14px; right: 24px;
  display: flex; gap: 6px; z-index: 2;
}
.mptstc_hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(245,239,228,0.35); cursor: pointer;
  transition: all var(--mptstc-transition);
}
.mptstc_hero-dot.mptstc_active { background: var(--mptstc-ochre); width: 18px; border-radius: 4px; }

/* ── MICROSITE NAV ── */
.mptstc_ms-nav {
  background: var(--mptstc-brown);
  border-bottom: 3px solid var(--mptstc-ochre);
  position: sticky; top: 0; z-index: 150;
  box-shadow: 0 2px 16px rgba(26,15,6,0.3);
}
.mptstc_ms-nav-inner {
  display: flex; align-items: stretch;
  padding: 0 20px; overflow-x: auto; scrollbar-width: none;
}
.mptstc_ms-nav-inner::-webkit-scrollbar { display: none; }
.mptstc_ms-nav-item {
  padding: 13px 45px;
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.85);
  cursor: pointer; white-space: nowrap;
  border-bottom: 3px solid transparent; margin-bottom: -3px;
  display: flex; align-items: center; gap: 4px;
  text-decoration: none;
  transition: color var(--mptstc-transition), border-color var(--mptstc-transition);
  position: relative;
}
.mptstc_ms-nav-item:hover,
.mptstc_ms-nav-item.mptstc_active {
    color: #000;
    border-bottom-color: var(--mptstc-ochre);
    background: rgba(255, 255, 255, 0.85);
}
.mptstc_ms-nav-item .mptstc_arrow { font-size: 14px; opacity: 0.6; }
.mptstc_ms-nav-right { margin-left: auto; display: flex; align-items: center; padding-left: 12px; }
.mptstc_reg-cta {
  background: var(--mptstc-ochre); color: var(--mptstc-brown-dk);
  border: none; padding: 8px 16px; font-size: 14px; font-weight: 700;
  border-radius: var(--mptstc-radius); cursor: pointer; white-space: nowrap;
  text-decoration: none; display: inline-block;
  transition: background var(--mptstc-transition), transform var(--mptstc-transition);
}
.mptstc_reg-cta:hover { background: var(--mptstc-ochre-lt); color: var(--mptstc-brown-dk); transform: translateY(-1px); }

/* DROPDOWN */
.mptstc_dropdown { position: relative; }
.mptstc_dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--mptstc-brown); min-width: 190px;
  border: 1px solid rgba(200,150,42,0.3);
  border-top: 3px solid var(--mptstc-ochre);
  border-radius: 0 0 var(--mptstc-radius) var(--mptstc-radius);
  box-shadow: 0 10px 28px rgba(26,15,6,0.4);
  z-index: 300;
  animation: mptstc_dropIn 0.2s ease both;
}
/* Portal state: JS moves the menu to <body> and positions it with
   inline top/left, so it escapes the .mptstc_ms-nav-inner scroll clip. */
.mptstc_dropdown-menu.mptstc_dd-portal {
  position: fixed;
}
@keyframes mptstc_dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mptstc_dropdown-menu a {
  display: block; padding: 10px 16px; font-size: 14px;
  color: rgba(245,239,228,0.75); text-decoration: none;
  border-bottom: 1px solid rgba(200,150,42,0.15);
  transition: background var(--mptstc-transition), color var(--mptstc-transition);
}
.mptstc_dropdown-menu a:last-child { border-bottom: none; }
.mptstc_dropdown-menu a:hover { background: rgba(200,150,42,0.12); color: var(--mptstc-ochre); }

/* HAMBURGER */
.mptstc_hamburger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; color: var(--mptstc-ochre); font-size: 22px;
}
.mptstc_mobile-nav {
  display: none; background: var(--mptstc-brown);
  border-bottom: 2px solid rgba(200,150,42,0.3); padding: 6px 0;
}
.mptstc_mobile-nav.mptstc_open { display: block; }
.mptstc_mobile-nav a {
  display: block; padding: 11px 20px;
  font-size: 12px; font-weight: 600;
  color: rgba(245,239,228,0.75); text-decoration: none;
  border-bottom: 1px solid rgba(200,150,42,0.15);
  transition: color var(--mptstc-transition), background var(--mptstc-transition);
}
.mptstc_mobile-nav a:hover { color: var(--mptstc-ochre); background: rgba(200,150,42,0.08); }
.mptstc_mobile-nav .mptstc_mobile-sub { padding-left: 32px; font-size: 14px; font-weight: 400; }

/* ── STATS BAR ── */
.mptstc_stats-bar { background: var(--mptstc-ochre); padding: 16px 20px; }
.mptstc_stats-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 12px; }
.mptstc_stat { text-align: center; }
.mptstc_stat-num {
  font-size: clamp(18px, 3vw, 26px); font-weight: 700;
  color: var(--mptstc-brown-dk); font-family: Georgia, serif; display: block;
}
.mptstc_stat-label { font-size: 13px; color: var(--mptstc-brown-md); margin-top: 2px; font-weight: 600; display: block; }

/* ── SECTION BASE ── */
.mptstc_section { padding: 48px 20px; }
.mptstc_section-cream { background: var(--mptstc-cream); }
.mptstc_section-white { background: var(--mptstc-cream-lt); }
.mptstc_container { max-width: 1100px; margin: 0 auto; }
.mptstc_sec-label {
  font-size: 13px; font-weight: 700; color: var(--mptstc-ochre);
  letter-spacing: 2.5px; text-transform: uppercase;
  text-align: center; margin-bottom: 6px; display: block;
}
.mptstc_sec-title {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700; color: var(--mptstc-text);
  text-align: center; margin-bottom: 8px; font-family: Georgia, serif;
}
.mptstc_sec-subtitle {
  font-size: 13px; color: var(--mptstc-text-muted);
  text-align: center; max-width: 560px;
  margin: 0 auto 28px; line-height: 1.7;
}
.mptstc_divider {
  width: 48px; height: 1px;
  background: var(--mptstc-ochre);
  margin: 10px auto 22px;
}

/* ── ABOUT ── */
.mptstc_about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.mptstc_about-card {
  background: var(--mptstc-cream-lt);
  border: 1px solid var(--mptstc-border);
  border-radius: 10px; overflow: hidden;
  transition: transform var(--mptstc-transition), box-shadow var(--mptstc-transition);
}
.mptstc_about-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(44,30,15,0.12); }
.mptstc_about-card-img { height: 348px; overflow: hidden; }
.mptstc_about-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.mptstc_about-card:hover .mptstc_about-card-img img { transform: scale(1.06); }
.mptstc_about-card-body { padding: 18px; }
.mptstc_tag {
  display: none !important; padding: 3px 9px; border-radius: 4px;
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 8px;
}
.mptstc_tag-ochre { background: rgba(200,150,42,0.15); color: #7a5010; }
.mptstc_tag-green { background: rgba(45,90,39,0.12); color: #2d5a27; }
.mptstc_card-title { font-size: 14px; font-weight: 700; color: var(--mptstc-text); margin-bottom: 6px; font-family: Georgia, serif; }
.mptstc_card-text { font-size: 12px; color: var(--mptstc-text-muted); line-height: 1.65; }
.mptstc_card-link { font-size: 14px; color: var(--mptstc-ochre); font-weight: 700; margin-top: 10px; display: inline-block; text-decoration: none; }
.mptstc_card-link:hover { text-decoration: underline; }

/* ── LEADERSHIP ── */
.mptstc_lead-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.mptstc_lead-card {
  background: var(--mptstc-cream-lt);
  border: 1px solid var(--mptstc-border);
  border-radius: 10px; padding: 22px 16px; text-align: center;
  transition: transform var(--mptstc-transition), box-shadow var(--mptstc-transition);
}
.mptstc_lead-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(44,30,15,0.1); }
.mptstc_lead-avatar {
  width: 200px; height: 200px; border-radius: 0%;
  background: var(--mptstc-ochre);
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 700;
  color: var(--mptstc-brown-dk); font-family: Georgia, serif;
}
.mptstc_lead-name { font-size: 12px; font-weight: 700; color: var(--mptstc-text); margin-bottom: 3px; }
.mptstc_lead-role { font-size: 13px; color: var(--mptstc-ochre); font-weight: 600; margin-bottom: 10px; }
.mptstc_lead-quote { font-size: 14px; color: var(--mptstc-text-muted); line-height: 1.6; font-style: italic; }

/* ── REGISTRATION ── */
.mptstc_reg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.mptstc_reg-card {
  background: var(--mptstc-cream-lt);
  border: 1px solid var(--mptstc-border);
  border-radius: 10px; padding: 20px 16px; text-align: center; cursor: pointer;
  transition: border-color var(--mptstc-transition), transform var(--mptstc-transition), box-shadow var(--mptstc-transition);
}
.mptstc_reg-card:hover { border-color: var(--mptstc-ochre); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(200,150,42,0.12); }
.mptstc_reg-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(200,150,42,0.1);
  border: 1px solid rgba(200,150,42,0.3);
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.mptstc_reg-title { font-size: 13px; font-weight: 700; color: var(--mptstc-text); margin-bottom: 6px; }
.mptstc_reg-desc { font-size: 14px; color: var(--mptstc-text-muted); margin-bottom: 14px; line-height: 1.5; }
.mptstc_reg-btn {
  background: var(--mptstc-brown); color:#fff;;
  border: none; padding: 8px 14px; font-size: 14px; font-weight: 700;
  border-radius: var(--mptstc-radius); cursor: pointer; width: 100%;
  transition: background var(--mptstc-transition);
}
.mptstc_reg-btn:hover { background: var(--mptstc-brown-md); }
.mptstc_reg-card-exhibitor .mptstc_reg-btn { background: var(--mptstc-ochre); color: var(--mptstc-brown-dk); }
.mptstc_reg-card-exhibitor .mptstc_reg-btn:hover { background: var(--mptstc-ochre-lt); }

/* ── FAM TOURS ── */
.mptstc_fam-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.mptstc_fam-card {
  background: var(--mptstc-cream-lt); border: 1px solid var(--mptstc-border);
  border-radius: 10px; overflow: hidden;
  transition: transform var(--mptstc-transition), box-shadow var(--mptstc-transition);
}
.mptstc_fam-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(44,30,15,0.12); }
.mptstc_fam-img { height: 250px; overflow: hidden; position: relative; }
.mptstc_fam-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.mptstc_fam-card:hover .mptstc_fam-img img { transform: scale(1.06); }
.mptstc_fam-img-overlay { position: absolute; inset: 0; background: rgba(44,30,15,0.2); }
.mptstc_fam-body { padding: 14px; }
.mptstc_fam-type { font-size: 14px; font-weight: 700; color: var(--mptstc-ochre); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.mptstc_fam-name { font-size: 13px; font-weight: 700; color: var(--mptstc-text); margin-bottom: 4px; font-family: Georgia, serif; }
.mptstc_fam-days { font-size: 14px; color: var(--mptstc-text-muted); }

/* ── TIMELINE ── */
.mptstc_timeline { position: relative; padding: 10px 0; max-width: 700px; margin: 0 auto; }
.mptstc_tl-line {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: rgba(200,150,42,0.35); transform: translateX(-50%);
}
.mptstc_tl-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 24px; }
.mptstc_tl-item:nth-child(odd) { /*flex-direction: row-reverse; */}
.mptstc_tl-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--mptstc-ochre);
  border: 3px solid var(--mptstc-cream);
  box-shadow: 0 0 0 1px var(--mptstc-ochre);
  flex-shrink: 0; margin-top: 4px; position: relative; z-index: 1;
}
.mptstc_tl-content {
  flex: 1; background: var(--mptstc-cream-lt);
  border: 1px solid var(--mptstc-border);
  border-radius: 8px; padding: 14px 16px;
}
.mptstc_tl-date { font-size: 13px; color: var(--mptstc-ochre); font-weight: 700; margin-bottom: 3px; }
.mptstc_tl-event { font-size: 13px; font-weight: 700; color: var(--mptstc-text); margin-bottom: 3px; font-family: Georgia, serif; }
.mptstc_tl-desc { font-size: 14px; color: var(--mptstc-text-muted); }


/* ── GALLERY ── */
.mptstc_gal-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 160px 160px; gap: 8px;
}
.mptstc_gal-item { border-radius: 8px; overflow: hidden; position: relative; cursor: pointer; }
.mptstc_gal-item.mptstc_large { grid-row: span 2; }
.mptstc_gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.mptstc_gal-item:hover img { transform: scale(1.06); }
.mptstc_gal-overlay {
  position: absolute; inset: 0; background: rgba(44,30,15,0.22);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.mptstc_gal-item:hover .mptstc_gal-overlay { opacity: 1; }
.mptstc_gal-overlay span { font-size: 28px; color: #fff; }

/* ── GALLERY MODAL ── */
.mptstc_modal-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(26,15,6,0.95); z-index: 9999;
  align-items: center; justify-content: center;
  animation: mptstc_fadeIn 0.25s ease;
}
.mptstc_modal-backdrop.mptstc_open { display: flex; }
@keyframes mptstc_fadeIn { from { opacity: 0; } to { opacity: 1; } }
.mptstc_modal-inner { position: relative; max-width: 90vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; }
.mptstc_modal-img { max-width: 90vw; max-height: 75vh; object-fit: contain; border-radius: 6px; display: block; }
.mptstc_modal-caption { color: rgba(245,239,228,0.75); font-size: 12px; margin-top: 12px; text-align: center; }
.mptstc_modal-close {
  position: fixed; top: 18px; right: 22px;
  background: rgba(200,150,42,0.15); border: 1px solid rgba(200,150,42,0.3);
  color: var(--mptstc-ochre); font-size: 22px; cursor: pointer;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--mptstc-transition);
}
.mptstc_modal-close:hover { background: rgba(200,150,42,0.35); }
.mptstc_modal-prev, .mptstc_modal-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(200,150,42,0.15); border: 1px solid rgba(200,150,42,0.3);
  color: var(--mptstc-ochre); font-size: 22px; cursor: pointer;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--mptstc-transition);
}
.mptstc_modal-prev:hover, .mptstc_modal-next:hover { background: rgba(200,150,42,0.35); }
.mptstc_modal-prev { left: 16px; }
.mptstc_modal-next { right: 16px; }
.mptstc_modal-counter { color: rgba(245,239,228,0.45); font-size: 14px; margin-top: 8px; }

/* ── SPONSORS ── */
.mptstc_sponsors-strip { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; }
.mptstc_sponsor-logo {
  width: 110px; height: 52px;
  background: var(--mptstc-cream-lt); border: 1px solid var(--mptstc-border);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--mptstc-text-muted); font-weight: 600;
  transition: border-color var(--mptstc-transition), box-shadow var(--mptstc-transition);
}
.mptstc_sponsor-logo:hover { border-color: var(--mptstc-ochre); box-shadow: 0 4px 12px rgba(200,150,42,0.12); }

/* ── TESTIMONIALS ── */
/* ── TESTIMONIALS: auto-scroll marquee ── */
.mptstc_test-marquee-outer {
  overflow: hidden;
  width: 100%;
  cursor: default;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.mptstc_test-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: mptstc_marquee 40s linear infinite;
}
.mptstc_test-marquee-track:hover { animation-play-state: paused; }
@keyframes mptstc_marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.mptstc_test-card {
  background: var(--mptstc-cream-lt); border: 1px solid var(--mptstc-border);
  border-radius: 10px; padding: 20px; position: relative; overflow: hidden;
  transition: transform var(--mptstc-transition), box-shadow var(--mptstc-transition);
  flex: 0 0 320px; width: 320px;
}
@media(max-width:576px) { .mptstc_test-card { flex: 0 0 280px; width: 280px; } }
.mptstc_test-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(44,30,15,0.1); }
.mptstc_test-quote-mark {
  position: absolute; top: 2px; left: 10px;
  font-size: 64px; color: var(--mptstc-ochre);
  opacity: 0.15; font-family: Georgia, serif; line-height: 1; pointer-events: none;
}
.mptstc_test-text { font-size: 12px; color: var(--mptstc-text-md); line-height: 1.7; margin-bottom: 14px; padding-top: 12px; font-style: italic; }
.mptstc_test-author { display: flex; align-items: center; gap: 10px; }
.mptstc_test-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(200,150,42,0.15); border: 1px solid rgba(200,150,42,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #7a5010; flex-shrink: 0;
}
.mptstc_test-name { font-size: 12px; font-weight: 700; color: var(--mptstc-text); }
.mptstc_test-country { font-size: 13px; color: var(--mptstc-text-muted); }

/* ── BUTTONS ── */
.mptstc_view-all { text-align: center; margin-top: 24px; }
.mptstc_btn-ghost {
  background: transparent; border: 1.5px solid var(--mptstc-ochre);
  color: var(--mptstc-ochre); padding: 10px 28px; font-size: 12px; font-weight: 700;
  border-radius: var(--mptstc-radius); cursor: pointer;
  transition: all var(--mptstc-transition); text-decoration: none; display: inline-block;
}
.mptstc_btn-ghost:hover { background: var(--mptstc-ochre); color: var(--mptstc-brown-dk); transform: translateY(-1px); }

/* ── LIGHT WARM FOOTER ── */
.mptstc_footer {
  background: var(--mptstc-sand);
  border-top: 1px solid var(--mptstc-border);
  padding: 40px 20px 20px;
}
.mptstc_footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 28px; margin-bottom: 24px;
}
.mptstc_footer-col-title {
  font-size: 14px; font-weight: 700;
  color: #7a1228;
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1.2px;
}
.mptstc_footer-col p,
.mptstc_footer-col a {
  font-size: 14px; color: #4a3520;
  display: block; margin-bottom: 6px; line-height: 1.6;
  text-decoration: none; transition: color var(--mptstc-transition);
}
.mptstc_footer-col a:hover { color: var(--mptstc-ochre); }
.mptstc_footer-accent { color: var(--mptstc-ochre) !important; font-weight: 600; }
.mptstc_footer-bottom {
  border-top: 1px solid #c8b89c; padding-top: 14px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.mptstc_footer-bottom p { font-size: 13px; color: #7a6a55; }
.mptstc_footer-bottom a { color: #7a6a55; text-decoration: none; font-size: 13px; }
.mptstc_footer-bottom a:hover { color: var(--mptstc-ochre); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .mptstc_about-card-img { height: 254px; overflow: hidden; }
  .mptstc_parent-nav, .mptstc_parent-search { display: none; }
  .mptstc_hamburger { display: flex; align-items: center; }
  .mptstc_ms-nav-inner { display: none; }
  .mptstc_ms-nav { display: flex; align-items: center; justify-content: space-between; padding: 0 16px; }
  .mptstc_ms-nav-brand { font-size: 12px; font-weight: 700; color: var(--mptstc-ochre); padding: 12px 0; }
  .mptstc_hero-content { padding: 20px 18px; }
  .mptstc_gal-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 120px 120px 120px; }
  .mptstc_gal-item.mptstc_large { grid-row: span 1; }
  .mptstc_footer-grid { grid-template-columns: 1fr 1fr; }
  .mptstc_tl-line { left: 16px; }
  .mptstc_tl-item, .mptstc_tl-item:nth-child(odd) { flex-direction: row; }
  .mptstc_tl-item > [aria-hidden="true"][style*="flex:1"] { display: none; }
  .mptstc_modal-prev { left: 6px; }
  .mptstc_modal-next { right: 6px; }
}
@media (max-width: 480px) {
  .mptstc_about-card-img { height: 254px; overflow: hidden; }
  .mptstc_section { padding: 32px 14px; }
  .mptstc_footer-grid { grid-template-columns: 1fr; }
  .mptstc_stats-inner { gap: 20px; }
  .mptstc_hero-btns { flex-direction: column; gap: 8px; }
  .mptstc_gal-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .mptstc_gal-item, .mptstc_gal-item.mptstc_large { min-height: 160px; }
}

/* ── DROPDOWN: click-based (JS controlled) ── */
.mptstc_dropdown-menu {
  display: none; /* hidden by default; JS sets display:block on open */
}
.mptstc_dropdown.mptstc_dd-open .mptstc_dropdown-menu {
  display: block;
}

/* ── MOBILE SUBMENU ACCORDION ── */
.mptstc_mobile-submenu {
  display: none;
  background: rgba(0,0,0,0.18);
  padding: 0;
}
.mptstc_mobile-submenu.mptstc_open { display: block; }
.mptstc_mobile-submenu a {
  padding-left: 36px !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  border-bottom: 1px solid rgba(200,150,42,0.1) !important;
}
.mptstc_mobile-sub-toggle {
  display: flex; align-items: center; justify-content: space-between;
}
.mptstc_mobile-sub-toggle::after {
  content: '▾'; font-size: 11px; opacity: 0.6; margin-right: 4px;
  transition: transform 0.25s ease;
}
.mptstc_mobile-sub-toggle.mptstc_open::after { transform: rotate(180deg); }

.mptstc_ms-nav-brand {
  display: none;
}

@media (max-width: 768px) {
  .mptstc_ms-nav-brand {
    display: block;
  }
}