:root {
  --mlx-ink: #2b191b;
  --mlx-ink-soft: #4b3437;
  --mlx-muted: #756367;
  --mlx-paper: #f7f0ea;
  --mlx-white: #fffaf6;
  --mlx-rose: #d85b72;
  --mlx-rose-dark: #9d354e;
  --mlx-peach: #ee9b7c;
  --mlx-blush: #f2c2b6;
  --mlx-line: rgba(43, 25, 27, .14);
}

html { scroll-behavior: smooth; }

body.mlx-body {
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--mlx-paper);
}

body.mlx-body #main-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.mlx-page,
.mlx-page * { box-sizing: border-box; }

.mlx-page {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  color: var(--mlx-ink);
  background: var(--mlx-paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.mlx-page a { color: inherit; }
.mlx-page h1,
.mlx-page h2,
.mlx-page h3,
.mlx-page p { margin-top: 0; }

.mlx-hero {
  position: relative;
  width: 100%;
  min-height: 790px;
  padding: 0 max(30px, calc((100vw - 1180px) / 2)) 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 4%, rgba(216, 91, 114, .22), transparent 29%),
    linear-gradient(135deg, #fffaf6 0%, #f8ebe4 58%, #edaa98 100%);
}

.mlx-hero::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 250, 246, .45);
  border-radius: 50%;
  pointer-events: none;
}

.mlx-nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  min-height: 94px;
  margin: 0 auto;
}

.mlx-brand {
  color: var(--mlx-ink);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .13em;
  text-decoration: none;
}

.mlx-brand span { color: var(--mlx-rose); }

.mlx-nav-link {
  padding: 10px 17px;
  border: 1px solid rgba(43, 25, 27, .25);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.mlx-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr);
  gap: clamp(52px, 8vw, 112px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 56px;
}

.mlx-eyebrow {
  margin-bottom: 18px;
  color: var(--mlx-rose-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.mlx-hero h1 {
  max-width: 720px;
  margin-bottom: 27px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(59px, 7.4vw, 98px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .89;
}

.mlx-hero h1 span {
  display: block;
  max-width: 650px;
  margin-top: 17px;
  font-size: .55em;
  letter-spacing: -.035em;
  line-height: 1.04;
}

.mlx-lead {
  max-width: 610px;
  margin-bottom: 32px;
  color: var(--mlx-ink-soft);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.65;
}

.mlx-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(135px, 1fr));
  max-width: 610px;
  margin-bottom: 33px;
  border-top: 1px solid var(--mlx-line);
  border-left: 1px solid var(--mlx-line);
}

.mlx-facts div {
  padding: 15px 17px;
  border-right: 1px solid var(--mlx-line);
  border-bottom: 1px solid var(--mlx-line);
}

.mlx-facts span,
.mlx-facts strong { display: block; }

.mlx-facts span {
  margin-bottom: 4px;
  color: var(--mlx-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mlx-facts strong { font-size: 13px; }
.mlx-actions { display: flex; align-items: center; gap: 23px; }

.mlx-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 58px;
  padding: 0 27px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .015em;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, color .18s ease;
}

.mlx-button:hover { transform: translateY(-2px); }
.mlx-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.mlx-button-primary { color: #fff !important; background: var(--mlx-rose); box-shadow: 0 14px 30px rgba(157, 53, 78, .2); }
.mlx-button-primary:hover { background: var(--mlx-rose-dark); }
.mlx-button-outline { border: 1px solid var(--mlx-ink); }
.mlx-button-outline:hover { color: #fff; background: var(--mlx-ink); }
.mlx-button-light { color: var(--mlx-ink) !important; background: var(--mlx-white); }
.mlx-button-light:hover { background: #f6e5df; }

.mlx-text-link {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(43, 25, 27, .28);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.mlx-photo-column {
  position: relative;
  width: min(100%, 420px);
  justify-self: end;
}

.mlx-photo {
  position: relative;
  aspect-ratio: 1003 / 1568;
  overflow: hidden;
  border: 8px solid rgba(255, 250, 246, .6);
  border-radius: 22px;
  background: #caa99e;
  box-shadow: 0 30px 80px rgba(75, 44, 42, .2);
  transform: rotate(1.5deg);
}

.mlx-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mlx-cost {
  padding: 96px max(30px, calc((100vw - 1080px) / 2));
  color: var(--mlx-white);
  background: var(--mlx-ink);
}

.mlx-cost-inner { max-width: 980px; margin: 0 auto; }
.mlx-cost .mlx-eyebrow { color: #f1a58f; }
.mlx-cost h2 {
  max-width: 860px;
  margin-bottom: 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 5.6vw, 70px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1;
}

.mlx-cost-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 54px;
  max-width: 880px;
}

.mlx-cost-copy p { margin: 0; color: #d7c9cb; font-size: 16px; line-height: 1.75; }
.mlx-cost-question {
  max-width: 900px;
  margin: 50px 0 0;
  padding: 27px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .17);
  color: #f4a58f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3.1vw, 39px);
  line-height: 1.22;
}

.mlx-about {
  padding: 92px max(30px, calc((100vw - 1060px) / 2));
  background: var(--mlx-paper);
}

.mlx-about-inner {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
}

.mlx-about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 26px 64px rgba(75, 44, 42, .16);
}

.mlx-about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .3);
  pointer-events: none;
}

.mlx-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mlx-about-copy h2 {
  max-width: 620px;
  margin: 0 0 25px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(39px, 4.9vw, 60px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.mlx-about-copy p:not(.mlx-eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--mlx-ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.mlx-about-copy p + p { margin-top: 13px; }

.mlx-program {
  padding: 100px max(30px, calc((100vw - 1140px) / 2));
  background: var(--mlx-white);
}

.mlx-program-heading {
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

.mlx-program-heading h2,
.mlx-value h2,
.mlx-tickets-heading h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(39px, 4.8vw, 59px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.03;
}

.mlx-program-heading h2 { margin-bottom: 23px; }
.mlx-program-heading > p:last-child { max-width: 700px; margin: 0 auto; color: var(--mlx-muted); font-size: 16px; line-height: 1.75; }

.mlx-program-intro {
  max-width: 910px;
  margin: 0 0 33px;
}

.mlx-program-intro .mlx-eyebrow { margin-bottom: 12px; }
.mlx-program-intro h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(30px, 3.6vw, 47px); font-weight: 500; letter-spacing: -.035em; line-height: 1.08; }

.mlx-program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mlx-program-grid article {
  min-height: 355px;
  padding: 32px 29px;
  border-top: 4px solid var(--mlx-rose);
  border-radius: 0 0 14px 14px;
  background: var(--mlx-paper);
}

.mlx-program-grid article > span { color: var(--mlx-rose-dark); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.mlx-program-grid h3 { margin: 17px 0 19px; font-family: Georgia, "Times New Roman", serif; font-size: 28px; font-weight: 500; letter-spacing: -.027em; line-height: 1.12; }
.mlx-program-grid p { margin: 0; color: var(--mlx-ink-soft); font-size: 14px; line-height: 1.7; }

.mlx-why-box {
  margin-top: 22px;
  padding: 48px 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f5d5cb, #efb19f);
}

.mlx-why-box .mlx-eyebrow { margin-bottom: 15px; }
.mlx-why-box h3 { max-width: 880px; margin: 0 0 24px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(32px, 4vw, 49px); font-weight: 500; letter-spacing: -.035em; line-height: 1.07; }
.mlx-why-box > div { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 52px; max-width: 930px; }
.mlx-why-box p:not(.mlx-eyebrow) { margin: 0; color: var(--mlx-ink-soft); font-size: 15px; line-height: 1.7; }

.mlx-format {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 58px;
  margin-top: 22px;
  padding: 48px 50px;
  border-radius: 16px;
  color: var(--mlx-white);
  background: var(--mlx-ink);
}

.mlx-format .mlx-eyebrow { margin-bottom: 14px; color: #f1a58f; }
.mlx-format h3 { margin: 0 0 17px; font-family: Georgia, "Times New Roman", serif; font-size: 34px; font-weight: 500; letter-spacing: -.03em; line-height: 1.1; }
.mlx-format-copy > p:last-child { margin: 0; color: #d2c4c6; font-size: 14px; line-height: 1.75; }
.mlx-format-list { display: grid; grid-template-columns: 1fr 1fr; align-content: start; align-items: start; gap: 0 24px; }
.mlx-format-list span { align-self: start; padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, .16); font-size: 13px; font-weight: 750; }
.mlx-safety { grid-column: 1 / -1; display: grid; grid-template-columns: .7fr 1.3fr; gap: 22px 42px; align-items: start; margin: 0; padding-top: 29px; border-top: 1px solid rgba(255, 255, 255, .18); }
.mlx-safety strong { color: #f4a58f; font-family: Georgia, "Times New Roman", serif; font-size: 22px; font-weight: 500; line-height: 1.25; }
.mlx-safety span { color: #c9babc; font-size: 13px; line-height: 1.7; }

.mlx-value {
  padding: 88px max(30px, calc((100vw - 1100px) / 2));
  background: var(--mlx-paper);
}

.mlx-value-copy { max-width: 850px; margin: 0 auto 42px; text-align: center; }
.mlx-value-copy h2 { margin-bottom: 22px; }
.mlx-value-copy > p:last-child { max-width: 690px; margin: 0 auto; color: var(--mlx-muted); font-size: 16px; line-height: 1.7; }
.mlx-outcomes { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1100px; margin: 0 auto; border-top: 1px solid var(--mlx-line); border-bottom: 1px solid var(--mlx-line); }
.mlx-outcomes article { padding: 31px 30px; border-right: 1px solid var(--mlx-line); }
.mlx-outcomes article:last-child { border: 0; }
.mlx-outcomes span { display: block; margin-bottom: 12px; color: var(--mlx-rose-dark); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.mlx-outcomes strong { font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 500; line-height: 1.38; }

.mlx-tickets {
  width: 100%;
  margin: 0;
  padding: 100px max(30px, calc((100vw - 1140px) / 2)) 88px;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 250, 246, .46), transparent 31%),
    linear-gradient(135deg, #efaa91 0%, #e77e83 55%, #cf5c76 100%);
}

.mlx-tickets-heading { max-width: 860px; margin: 0 auto 49px; text-align: center; }
.mlx-tickets-heading .mlx-eyebrow { color: #7f2a40; }
.mlx-tickets-heading h2 { margin-bottom: 20px; }
.mlx-tickets-heading > p:last-child { max-width: 700px; margin: 0 auto; color: #5c3539; font-size: 16px; line-height: 1.7; }
.mlx-ticket-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; max-width: 1140px; margin: 0 auto; }

.mlx-ticket {
  position: relative;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 22px;
  background: rgba(255, 250, 246, .94);
  box-shadow: 0 28px 72px rgba(81, 37, 43, .16);
  backdrop-filter: blur(10px);
}

.mlx-ticket-vip { color: var(--mlx-white); background: var(--mlx-ink); box-shadow: 0 32px 88px rgba(43, 25, 27, .29); }
.mlx-badge { position: absolute; top: 0; right: 25px; padding: 10px 15px; color: #fff; background: var(--mlx-rose); border-radius: 0 0 8px 8px; font-size: 9px; font-weight: 900; letter-spacing: .11em; }
.mlx-ticket-name { margin-bottom: 21px; color: var(--mlx-muted); font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.mlx-ticket-vip .mlx-ticket-name { color: #cbbbbe; }
.mlx-price { display: flex; align-items: flex-start; gap: 7px; }
.mlx-price strong { font-family: Georgia, "Times New Roman", serif; font-size: 78px; font-weight: 500; letter-spacing: -.06em; line-height: .87; }
.mlx-price span { margin-top: 6px; font-size: 14px; font-weight: 850; }
.mlx-ticket > div > small { display: block; margin: 13px 0 27px; color: var(--mlx-muted); }
.mlx-ticket-vip > div > small { color: #c4b5b7; }

.mlx-ticket ul { display: grid; gap: 14px; margin: 0 0 28px; padding: 25px 0 0; border-top: 1px solid var(--mlx-line); list-style: none; }
.mlx-ticket-vip ul { border-color: rgba(255, 255, 255, .18); }
.mlx-ticket li { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; align-items: start; font-size: 14px; line-height: 1.45; }
.mlx-ticket li span { display: flex; gap: 10px; }
.mlx-ticket li b { color: var(--mlx-rose); }
.mlx-ticket li em { color: var(--mlx-muted); font-size: 12px; font-style: normal; font-weight: 900; white-space: nowrap; }
.mlx-ticket-vip li em { color: #e8a79a; }

.mlx-package-value { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin: 0 0 13px; padding: 16px 18px; color: var(--mlx-muted); background: #f1e6e1; border-radius: 10px; font-size: 12px; }
.mlx-package-value strong { color: var(--mlx-ink); font-size: 16px; white-space: nowrap; }
.mlx-ticket-vip .mlx-package-value { color: #d6c9cb; background: rgba(255, 255, 255, .08); }
.mlx-ticket-vip .mlx-package-value strong { color: #fff; }
.mlx-saving { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; margin: 0 0 24px; color: #d8c9cb; font-size: 12px; }
.mlx-saving strong { color: #f4a58f; font-family: Georgia, "Times New Roman", serif; font-size: 24px; font-weight: 500; white-space: nowrap; }
.mlx-ticket .mlx-button { width: 100%; margin-top: auto; }

.mlx-contact { display: flex; align-items: center; justify-content: space-between; gap: 30px; max-width: 1140px; margin: 32px auto 0; padding-top: 27px; border-top: 1px solid rgba(43, 25, 27, .22); }
.mlx-contact p { max-width: 660px; margin: 0; color: #5c3539; font-size: 14px; }
.mlx-contact a { flex: 0 0 auto; padding: 12px 17px; border: 1px solid rgba(43, 25, 27, .3); border-radius: 999px; font-size: 12px; font-weight: 850; letter-spacing: .03em; text-decoration: none; }
.mlx-contact a:hover { color: #fff; border-color: var(--mlx-ink); background: var(--mlx-ink); }

.mlx-footer { display: flex; align-items: center; justify-content: space-between; min-height: 110px; padding: 25px max(30px, calc((100vw - 1080px) / 2)); color: var(--mlx-white); background: #211316; }
.mlx-footer .mlx-brand { color: var(--mlx-white); }
.mlx-footer > span { color: #bcaeb0; font-size: 11px; }
.mlx-mobile-cta { display: none; }

@media (max-width: 880px) {
  .mlx-hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .mlx-photo-column { width: min(82%, 420px); justify-self: center; }
  .mlx-cost-copy { grid-template-columns: 1fr; gap: 15px; }
  .mlx-about-inner { grid-template-columns: 1fr; }
  .mlx-about-photo { width: min(82%, 420px); }
  .mlx-program-grid { grid-template-columns: 1fr; }
  .mlx-program-grid article { min-height: 0; }
  .mlx-why-box > div { grid-template-columns: 1fr; gap: 14px; }
  .mlx-format { grid-template-columns: 1fr; }
  .mlx-safety { grid-column: auto; grid-template-columns: 1fr; }
  .mlx-outcomes { grid-template-columns: 1fr; }
  .mlx-outcomes article { border-right: 0; border-bottom: 1px solid var(--mlx-line); }
  .mlx-ticket-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body.mlx-body { padding-bottom: 68px; }
  .mlx-hero { min-height: 0; padding: 0 21px 70px; }
  .mlx-nav { min-height: 76px; }
  .mlx-hero-grid { gap: 49px; padding-top: 36px; }
  .mlx-hero h1 { font-size: clamp(52px, 16.5vw, 72px); }
  .mlx-lead { font-size: 16px; }
  .mlx-facts { grid-template-columns: 1fr 1fr; }
  .mlx-facts div { padding: 13px 12px; }
  .mlx-actions { align-items: stretch; flex-direction: column; gap: 15px; }
  .mlx-actions .mlx-button { width: 100%; }
  .mlx-text-link { align-self: center; }
  .mlx-photo-column { width: 94%; }
  .mlx-cost { padding: 73px 21px; }
  .mlx-cost h2 { font-size: 43px; }
  .mlx-cost-question { margin-top: 37px; font-size: 27px; }
  .mlx-about { padding: 72px 21px; }
  .mlx-about-inner { gap: 37px; }
  .mlx-about-photo { width: 100%; }
  .mlx-about-copy h2 { font-size: 42px; }
  .mlx-program { padding: 75px 21px; }
  .mlx-program-heading { margin-bottom: 46px; text-align: left; }
  .mlx-program-heading h2 { font-size: 43px; }
  .mlx-program-intro h3 { font-size: 32px; }
  .mlx-program-grid article { padding: 29px 24px; }
  .mlx-why-box { padding: 33px 25px; }
  .mlx-why-box h3 { font-size: 34px; }
  .mlx-format { gap: 29px; padding: 34px 25px; }
  .mlx-format-list { grid-template-columns: 1fr; }
  .mlx-value { padding: 72px 21px; }
  .mlx-value-copy { text-align: left; }
  .mlx-outcomes article { padding: 27px 3px; }
  .mlx-tickets { padding: 76px 21px 72px; }
  .mlx-tickets-heading { text-align: left; }
  .mlx-ticket { min-height: 0; padding: 36px 24px 28px; border-radius: 18px; }
  .mlx-price strong { font-size: 70px; }
  .mlx-ticket li { grid-template-columns: 1fr; gap: 4px; }
  .mlx-ticket li em { padding-left: 26px; }
  .mlx-package-value { align-items: flex-start; }
  .mlx-saving { align-items: flex-start; flex-direction: column; gap: 4px; }
  .mlx-saving strong { font-size: 27px; }
  .mlx-contact { align-items: flex-start; flex-direction: column; gap: 14px; }
  .mlx-footer { min-height: 145px; align-items: flex-start; flex-direction: column; padding: 31px 21px; }
  .mlx-mobile-cta {
    position: fixed;
    z-index: 9999;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    color: #fff !important;
    background: var(--mlx-rose);
    border-radius: 999px;
    box-shadow: 0 12px 34px rgba(43, 25, 27, .3);
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mlx-button { transition: none; }
}
