@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,700;1,9..144,300;1,9..144,700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ── TOKENS ── */
:root {
  /* Palette */
  --navy:        #0a0f1e;
  --navy-2:      #0e1628;
  --navy-3:      #141e35;
  --teal:        #00d4e8;
  --teal-dark:   #00a8ba;
  --teal-glow:   rgba(0,212,232,0.15);
  --amber:       #f5a623;
  --amber-dark:  #d4881a;
  --amber-glow:  rgba(245,166,35,0.15);
  --white:       #ffffff;
  --off-white:   #f4f6f9;
  --light:       #eaf0f5;
  --border:      #dde4ec;
  --text:        #1e2d3d;
  --text-mid:    #4a6070;
  --text-light:  #7a95a5;

  /* Gradients */
  --grad-hero:      linear-gradient(135deg, #0a0f1e 0%, #0e1a2e 60%, #0f1e38 100%);
  --grad-teal:      linear-gradient(135deg, #00d4e8, #0099cc);
  --grad-amber:     linear-gradient(135deg, #f5a623, #e8830a);
  --grad-section:   linear-gradient(135deg, #0e1628 0%, #0f2040 100%);
  --grad-card:      linear-gradient(145deg, rgba(0,212,232,0.08) 0%, rgba(0,0,0,0) 60%);

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Layout */
  --nav-h:    72px;
  --max-w:    1200px;
  --px:       clamp(20px, 5vw, 72px);
  --sy:       clamp(80px, 10vw, 130px);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── HELPERS ── */
.mm-cap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.mm-cap::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--grad-teal);
  flex-shrink: 0;
}

.mm-cap--amber { color: var(--amber); }
.mm-cap--amber::before { background: var(--grad-amber); }

.mm-cap--white { color: rgba(255,255,255,0.9); }
.mm-cap--white::before { background: var(--grad-teal); }

.mm-h {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.mm-h em {
  font-style: italic;
  background: var(--grad-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mm-h--white { color: var(--white); }
.mm-h--white em {
  background: var(--grad-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mm-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── NAV ── */
.mm-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background 0.4s, box-shadow 0.4s;
}

.mm-nav--transparent { background: #000; }

.mm-nav.scrolled {
  background: rgba(10, 15, 30, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,212,232,0.12);
}

.mm-nav__inner {
  max-width: var(--max-w);
  margin: 7px auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--px);
}

.mm-nav__logo img {
  height: 44px;
  width: auto;
  display: block;
}

.mm-nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.mm-nav__links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  position: relative;
}

.mm-nav__links a:hover { color: var(--teal); }
.mm-nav__links a.active { color: var(--white); }

.mm-nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--grad-teal);
}

.mm-nav__cta {
  background: var(--grad-teal) !important;
  color: var(--navy) !important;
  padding: 11px 26px;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  border-radius: 20px;
  transition: opacity 0.2s, transform 0.2s !important;
  box-shadow: 0 4px 20px rgba(0,212,232,0.35);
}

.mm-nav__cta:hover {
  opacity: 0.88 !important;
  transform: translateY(-1px);
  color: var(--navy) !important;
}

.mm-nav__cta::after { display: none !important; }

/* Burger */
.mm-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.mm-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.28s;
}

.mm-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mm-burger.open span:nth-child(2) { opacity: 0; }
.mm-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mm-mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 899;
  background: var(--navy-2);
  border-bottom: 2px solid var(--teal);
  padding: 28px var(--px) 32px;
  flex-direction: column;
  gap: 22px;
}

.mm-mobile-nav.open { display: flex; }

.mm-mobile-nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}

.mm-mobile-nav a:hover { color: var(--teal); }

/* ── BUTTONS ── */
.mm-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 34px;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.22s;
  white-space: nowrap;
  justify-content: center;
}

.mm-btn--teal {
  background: var(--grad-teal);
  color: var(--navy);
  box-shadow: 0 6px 28px rgba(0,212,232,0.35);
}

.mm-btn--teal:hover {
  box-shadow: 0 10px 36px rgba(0,212,232,0.5);
  transform: translateY(-2px);
  color: var(--navy);
}

.mm-btn--amber {
  background: var(--grad-amber);
  color: var(--white);
  box-shadow: 0 6px 28px rgba(245,166,35,0.35);
}

.mm-btn--amber:hover {
  box-shadow: 0 10px 36px rgba(245,166,35,0.5);
  transform: translateY(-2px);
  color: var(--white);
}

.mm-btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1.5px solid #fff;
  transition: .3s all;
}

.mm-btn--outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--white);
}

.mm-btn--dark {
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid rgba(0,212,232,0.2);
}

.mm-btn--dark:hover {
  background: var(--navy-3);
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-1px);
}

.mm-btn__arr {
  font-size: 16px;
  transition: transform 0.2s;
}

.mm-btn:hover .mm-btn__arr { transform: translateX(4px); }

/* Centred hero — no right panel */
.mm-hero--centered {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-template-columns: unset;
}

.mm-hero--centered .mm-hero__left {
  max-width: 850px;
  width: 100%;
  text-align: center;
  padding: calc(var(--nav-h) + 80px) var(--px) 80px;
  margin: 0 auto;
  align-items: center;
}

.mm-hero--centered .mm-hero__left::before,
.mm-hero--centered .mm-hero__left::after { display: none; }

.mm-hero--centered .mm-hero__kicker { justify-content: center; }

.mm-hero--centered .mm-hero__body {
  margin-left: auto;
  margin-right: auto;
}

.mm-hero--centered .mm-hero__actions { justify-content: center; }

.mm-hero--centered .mm-hero__badges { justify-content: center; }

/* ── HERO ── */
.mm-hero {
  min-height: 100svh;
  background:
    linear-gradient(135deg, rgba(0,212,232,0.82) 0%, #000000cf 50%, rgba(0,212,232,0.82)100%),
    url('../img/SI-Valima-0155.jpg') center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

/* Left panel */
.mm-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) var(--px) 60px;
  position: relative;
  z-index: 2;
}

/* Decorative circles */
.mm-hero__left::before {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,232,0.08);
  pointer-events: none;
}

.mm-hero__left::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,232,0.12);
  pointer-events: none;
}

.mm-hero__kicker {
  opacity: 0;
  animation: fadeUp 0.8s 0.1s cubic-bezier(0.16,1,0.3,1) forwards;
}

.mm-hero__h1 {
  font-size: clamp(52px, 6vw, 88px);
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.25s cubic-bezier(0.16,1,0.3,1) forwards;
}

.mm-hero__body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  max-width: 800px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s cubic-bezier(0.16,1,0.3,1) forwards;
}

.mm-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.55s cubic-bezier(0.16,1,0.3,1) forwards;
}

.mm-hero__badges {
  display: flex;
  gap: 60px;
  margin-top: 52px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.72s cubic-bezier(0.16,1,0.3,1) forwards;
}

.mm-hero__badge {
  flex: 1;
  padding-right: 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}

.mm-hero__badge:last-child { border-right: none; padding-right: 0; padding-left: 20px; }
.mm-hero__badge:first-child { padding-left: 0; }

.mm-hero__badge-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  background: var(--grad-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.mm-hero__badge-label {
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.06em;
}

/* Right panel — photo */
.mm-hero__right {
  position: relative;
  overflow: hidden;
}

.mm-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Gradient overlay on photo — using ::before so it never blocks the iframe */
.mm-hero__photo-overlay {
  display: none; /* replaced by ::before below */
}

.mm-hero__right::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--navy) 0%, transparent 35%),
    linear-gradient(to top, var(--navy) 0%, transparent 30%);
  pointer-events: none;
  z-index: 3;
}

/* Teal accent bar on right edge */
.mm-hero__right::after {
  content: '';
  position: absolute;
  top: 20%; right: 0; bottom: 20%;
  width: 3px;
  background: var(--grad-teal);
  z-index: 4;
  pointer-events: none;
}

/* Floating card on photo */
.mm-hero__float {
  position: absolute;
  bottom: 48px;
  left: -0;
  background: rgba(10,15,30,0.92);
  backdrop-filter: blur(12px);
  /* border: 1px solid rgba(0,212,232,0.2); */
  padding: 20px 24px;
  z-index: 3;
  min-width: 220px;
  animation: fadeUp 0.8s 0.9s cubic-bezier(0.16,1,0.3,1) both;
}

.mm-hero__float-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

.mm-hero__float-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

/* ── SECTION WRAPPER ── */
.mm-sec { padding: var(--sy) var(--px); }
.mm-sec--light   { background: var(--off-white); }
.mm-sec--dark    { background: var(--grad-section); }
.mm-sec--navy    { background: var(--navy); }
.mm-sec--border  { border-top: 1px solid var(--border); }

/* ── ABOUT ── */
/* .mm-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
} */

.mm-about__h {
  font-size: clamp(38px, 4.5vw, 58px);
  margin-bottom: 28px;
}

.mm-about__body p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.mm-about__body p:last-child { margin-bottom: 0; }

/* Stats strip */
.mm-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 36px;
}

.mm-stat {
  background: var(--white);
  padding: 24px 22px;
  transition: background 0.2s;
}

.mm-stat:hover { background: var(--light); }

.mm-stat__num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  background: var(--grad-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 4px;
}

.mm-stat__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.5;
}

/* Photo aside */
.mm-about__photo-wrap {
  position: relative;
}

.mm-about__photo {
  width: 100%;
  height: clamp(400px, 50vw, 600px);
  object-fit: cover;
  display: block;
}

.mm-about__photo-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--grad-teal);
  color: var(--navy);
  padding: 20px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(0,212,232,0.4);
  z-index: 2;
}

/* ── EXPERIENCE — DARK SECTION ── */
.mm-exp__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 24px;
  flex-wrap: wrap;
}

.mm-exp__h { font-size: clamp(36px, 4.5vw, 56px); }

.mm-exp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,212,232,0.1);
}

.mm-exp__card {
  background: rgba(255,255,255,0.04);
  padding: 44px 34px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

/* Top border sweep */
.mm-exp__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 100%;
  height: 2px;
  background: var(--grad-teal);
  transition: right 0.4s ease;
}

.mm-exp__card:hover { background: rgba(0,212,232,0.06); }
.mm-exp__card:hover::before { right: 0; }

/* Big decorative number */
.mm-exp__n {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  background: var(--grad-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  margin-bottom: 20px;
}

.mm-exp__card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.mm-exp__card p {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

/* ── VIDEO ── */
.mm-video__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.mm-video__h { font-size: clamp(32px, 4vw, 50px); }

.mm-video__wrap {
  position: relative;
  padding-bottom: 90%;
  height: 0;
  overflow: hidden;
  background: var(--light);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  z-index: 2;
}

.mm-video__wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
  z-index: 2;
}

/* ── TESTIMONIALS ── */
.mm-testi__top { margin-bottom: 44px; }
.mm-testi__h   { font-size: clamp(32px, 4vw, 50px); }

.mm-testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mm-testi__card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.mm-testi__card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 36px rgba(0,212,232,0.12);
  transform: translateY(-4px);
}

.mm-testi__stars { color: var(--amber); font-size: 14px; letter-spacing: 2px; }

.mm-testi__q {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  flex: 1;
}

.mm-testi__name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ── CTA ── */
.mm-cta {
  background: var(--navy);
  padding: clamp(80px, 10vw, 140px) var(--px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Big decorative background text */
.mm-cta::before {
  content: 'MAGIC';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 20vw;
  font-weight: 700;
  color: rgba(0,212,232,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.mm-cta__h {
  font-size: clamp(40px, 5.5vw, 72px);
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}

.mm-cta__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 420px;
  margin: 0 auto 48px;
  line-height: 1.8;
  position: relative;
}

/* ── FOOTER ── */
.mm-footer {
  background: var(--navy-2);
  border-top: 2px solid rgba(0,212,232,0.15);
  padding: 64px var(--px) 36px;
}

.mm-footer__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mm-footer__logo img {
  height: 42px;
  margin-bottom: 18px;
}

.mm-footer__brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.mm-footer__brand-desc {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
}

.mm-footer__col-title {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.mm-footer__links { list-style: none; display: flex; flex-direction: column; gap: 12px; padding: 0; }

.mm-footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.mm-footer__links a:hover { color: var(--teal); }

.mm-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.mm-footer__contact-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.mm-footer__contact-item a,
.mm-footer__contact-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.mm-footer__contact-item a:hover { color: var(--teal); }

.mm-footer__bottom {
  max-width: var(--max-w);
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── EVENTS PAGE HERO ── */
.mm-page-hero {
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  /* Background image with dark overlay */
  background-image:
    linear-gradient(135deg, rgba(10,15,30,0.92) 0%, rgba(14,22,40,0.80) 55%, rgba(10,15,30,0.65) 100%),
    url('../img/STILL_05.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mm-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  /* Subtle teal dot grid on top of photo for texture */
  background-image: radial-gradient(rgba(0,212,232,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

.mm-page-hero__inner {
  position: relative; z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 130px) var(--px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Centred variant — no image, content in middle */
.mm-page-hero__inner--centered {
  grid-template-columns: 1fr;
  max-width: 780px;
  text-align: center;
}

.mm-page-hero__inner--centered .mm-cap {
  justify-content: center;
}

.mm-page-hero__inner--centered .mm-page-hero__sub {
  margin-left: auto;
  margin-right: auto;
}

.mm-page-hero__inner--centered div[style] {
  display: flex;
  justify-content: center;
}

.mm-page-hero__h1 { font-size: clamp(46px, 6vw, 80px); }

.mm-page-hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-top: 20px;
}

.mm-page-hero__img {
  position: relative;
}

.mm-page-hero__img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.mm-page-hero__img::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--grad-teal);
  z-index: -1;
}

/* ── EVENT CARDS with images ── */
.mm-events__h { font-size: clamp(32px, 4vw, 52px); margin-bottom: 48px; }

.mm-event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mm-event-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.mm-event-card:hover {
  box-shadow: 0 12px 48px rgba(0,212,232,0.14);
  transform: translateY(-4px);
}

.mm-event-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.mm-event-card:hover .mm-event-card__img { transform: scale(1.04); }

.mm-event-card__body {
  padding: 28px 28px 32px;
}

.mm-event-card__tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(0,212,232,0.1);
  padding: 4px 10px;
  margin-bottom: 14px;
}

.mm-event-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}

.mm-event-card p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-mid);
  margin: 0;
}

/* ── AREAS BAND ── */
.mm-areas {
  background: var(--navy-3);
  padding: 28px var(--px);
  border-top: 1px solid rgba(0,212,232,0.12);
  border-bottom: 1px solid rgba(0,212,232,0.12);
}

.mm-areas__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.mm-areas__lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal);
  white-space: nowrap;
}

.mm-areas__sep { width: 1px; height: 18px; background: rgba(0,212,232,0.15); }

.mm-areas__tags { display: flex; gap: 8px; flex-wrap: wrap; }

.mm-areas__tag {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 6px 14px;
  border: 1px solid rgba(0,212,232,0.15);
  border-radius: 1px;
  transition: all 0.2s;
}

.mm-areas__tag:hover { color: var(--teal); border-color: var(--teal); background: rgba(0,212,232,0.06); }

/* ── EXPECT LIST ── */
.mm-expect__h { font-size: clamp(32px, 4vw, 50px); margin-bottom: 44px; }

.mm-expect-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  transition: background 0.2s;
}

.mm-expect-row:first-of-type { border-top: 1px solid var(--border); }

.mm-expect-row__n {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  background: var(--grad-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
  padding-top: 2px;
}

.mm-expect-row__c h4 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.mm-expect-row__c p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-mid);
  margin: 0;
}

/* ── FORM ── */
.mm-form-sec { background: var(--grad-section); }

.mm-form-sec .mm-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.mm-form-intro__h {
  font-size: clamp(38px, 5vw, 60px);
  color: var(--white);
  margin-bottom: 20px;
}

.mm-form-intro__body {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

.mm-form-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.mm-form-detail__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.mm-form-detail p { font-size: 14px; color: rgba(255,255,255,0.65); margin: 0; }
.mm-form-detail a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.mm-form-detail a:hover { color: var(--teal); }

/* Form fields */
.mm-form { display: flex; flex-direction: column; gap: 16px; }
.mm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mm-field { display: flex; flex-direction: column; gap: 8px; }

.mm-field label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.mm-field input,
.mm-field select,
.mm-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: 2px solid rgba(0,212,232,0.25);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
}

.mm-field input::placeholder,
.mm-field textarea::placeholder { color: rgba(255,255,255,0.22); }

.mm-field input:focus,
.mm-field select:focus,
.mm-field textarea:focus {
  border-color: var(--teal);
  background: rgba(0,212,232,0.05);
}

.mm-field select { cursor: pointer; -webkit-appearance: none; }
.mm-field select option { background: #0f1a2c; color: var(--white); }
.mm-field textarea { resize: vertical; min-height: 100px; }

.mm-form__note {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

/* ── FAQ ── */
.mm-faq__h { font-size: clamp(32px, 4vw, 50px); margin-bottom: 48px; }

.mm-faq-item { border-bottom: 1px solid var(--border); }
.mm-faq-item:first-of-type { border-top: 1px solid var(--border); }

.mm-faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  user-select: none;
}

.mm-faq-item__q-text {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.mm-faq-item__toggle {
  width: 30px; height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  color: var(--teal);
  transition: all 0.28s;
  /* Ensure it is never affected by .mm-btn styles */
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.mm-faq-item.open .mm-faq-item__toggle {
  transform: rotate(45deg);
  background: var(--grad-teal);
  color: var(--navy);
  border-color: transparent;
}

.mm-faq-item__a {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding-bottom 0.35s ease;
}

.mm-faq-item.open .mm-faq-item__a {
  max-height: 260px;
  padding-bottom: 24px;
}

/* ── SCROLL REVEAL ── */
.mm-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

.mm-reveal.mm-in { opacity: 1; transform: none; }

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .mm-hero__photo{position: relative;}
  .mm-hero { grid-template-columns: 1fr; min-height: 100%;}
  .mm-hero__left { padding-bottom: 80px; text-align: center;}
  .mm-hero__body{text-align: center; max-width: 100%;}
  .mm-about { grid-template-columns: 1fr; gap: 48px; }
  .mm-exp__grid { grid-template-columns: 1fr 1fr; }
  .mm-form-sec .mm-inner { grid-template-columns: 1fr; gap: 52px; }
  .mm-footer__grid { grid-template-columns: 1fr 1fr; }
  .mm-page-hero__inner { grid-template-columns: 1fr; }
  .mm-page-hero__img, .mm-about__photo-badge { display: none; }
  .mm-hero__actions{justify-content: center; align-items: center;}
}

@media (max-width: 768px) {
  .mm-nav__links { display: none; }
  .mm-burger     { display: flex; }
  .mm-exp__grid  { grid-template-columns: 1fr; }
  .mm-testi__grid { grid-template-columns: 1fr; gap: 16px; }
  .mm-event-grid { grid-template-columns: 1fr; }
  .mm-form-row   { grid-template-columns: 1fr; }
  .mm-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .mm-footer__bottom { flex-direction: column; align-items: flex-start; }
  .mm-hero__badges { gap: 20px; }
  .mm-hero__badge { border: none; padding: 0 !important; }
}

@media (max-width: 480px) {
  .mm-hero__actions, .mm-hero__actions a { display: block; margin: 1rem 0;}
}