/* =========================================================================
   Monster Triathlon 2027 — theme.css
   Design system extracted verbatim from the approved prototype
   (Monster-Header / Monster-Home / Monster-Footer .dc.html)
   ========================================================================= */

/* ---------- 1. Tokens ---------------------------------------------------- */

:root {
  --mt-orange:       #F18C20;
  --mt-orange-deep:  #C46A0C;
  --mt-orange-dark:  #9A4F06;
  --mt-ink:          #121517;
  --mt-ink-raised:   #1D2124;
  --mt-body:         #2A2E31;
  --mt-body-soft:    #4A4F53;
  --mt-muted:        #63686C;
  --mt-muted-warm:   #6E6A65;
  --mt-paper:        #F7F5F2;
  --mt-rule:         #D5D2CD;

  --mt-rule-dark:    rgba(213, 210, 205, .16);
  --mt-rule-dark-strong: rgba(213, 210, 205, .3);
  --mt-on-dark:      rgba(247, 245, 242, .8);
  --mt-on-dark-soft: rgba(247, 245, 242, .66);

  --mt-display: "Sofia Sans Condensed", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mt-serif:   "Newsreader", Georgia, "Times New Roman", serif;

  --mt-shell:   min(1440px, calc(100% - clamp(32px, 5vw, 80px)));
  --mt-topbar:  38px;
  --mt-navh:    clamp(64px, 6vw, 84px);

  --mt-section-y: clamp(72px, 9vw, 148px);
}

/* ---------- 2. Reset ----------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--mt-topbar) + var(--mt-navh) + 16px); }

body {
  margin: 0;
  background: var(--mt-paper);
  color: var(--mt-ink);
  font-family: var(--mt-serif);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
table { border-collapse: collapse; width: 100%; }

a { color: var(--mt-orange-deep); text-decoration: none; }
a:hover { color: var(--mt-orange); }

::selection { background: var(--mt-orange); color: var(--mt-ink); }

:focus-visible {
  outline: 2px solid var(--mt-orange);
  outline-offset: 3px;
}

.mt-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.mt-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--mt-ink);
  color: var(--mt-paper);
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 16px 24px;
}
.mt-skip-link:focus { left: 0; color: var(--mt-paper); }

/* ---------- 3. Motion ---------------------------------------------------- */

@keyframes mtDraw   { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }
@keyframes mtFade   { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes mtDrawer { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: none; } }

.mt-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.32, .72, 0, 1);
  will-change: opacity, transform;
}
.mt-reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mt-reveal { opacity: 1; transform: none; transition: none; }
  .mt-routeline__draw { stroke-dashoffset: 0 !important; animation: none !important; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- 4. Layout primitives ----------------------------------------- */

.mt-shell { width: var(--mt-shell); margin-inline: auto; }

.mt-section { padding-block: var(--mt-section-y); }
.mt-section--dark { background: var(--mt-ink); color: var(--mt-paper); }
.mt-section--tight-top { padding-top: 0; }
.mt-section--tight-bottom { padding-bottom: 0; }

.mt-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--mt-orange);
  flex: none;
}
.mt-pipe {
  width: 1px; height: 15px;
  background: var(--mt-rule-dark-strong);
  flex: none;
}

/* ---------- 5. Type ------------------------------------------------------ */

.mt-eyebrow {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mt-muted);
}
.mt-eyebrow--orange { color: var(--mt-orange); }
.mt-eyebrow--deep   { color: var(--mt-orange-dark); }

.mt-h1 {
  font-family: var(--mt-display);
  font-weight: 900;
  font-size: clamp(3.6rem, 13.2vw, 12rem);
  line-height: .76;
  letter-spacing: -.018em;
  text-transform: uppercase;
  text-wrap: balance;
}
.mt-h1__lead { color: var(--mt-orange); }

.mt-h2 {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -.014em;
  text-wrap: balance;
}
.mt-h2--tall { line-height: 1.02; font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
.mt-h2--big  { font-weight: 800; font-size: clamp(2.2rem, 5.2vw, 4.2rem); letter-spacing: -.016em; }

.mt-h3 {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: clamp(1.32rem, 1.9vw, 1.62rem);
  line-height: 1.14;
  letter-spacing: -.01em;
}

.mt-lede {
  font-size: clamp(1.12rem, 1.5vw, 1.32rem);
  line-height: 1.62;
  color: var(--mt-body);
}
.mt-body { font-size: clamp(1.02rem, 1.3vw, 1.14rem); line-height: 1.7; color: var(--mt-body-soft); }
.mt-body--lg { font-size: clamp(1.06rem, 1.4vw, 1.24rem); line-height: 1.62; color: var(--mt-body-soft); }

.mt-kicker {
  font-family: var(--mt-display);
  font-weight: 600;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  letter-spacing: -.006em;
  color: var(--mt-ink);
  border-top: 1px solid var(--mt-rule);
  padding-top: 22px;
}

.mt-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-family: var(--mt-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.mt-caption {
  font-family: var(--mt-display);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mt-muted);
}

/* Unconfirmed-content flag, per brief build rule 7 */
.mt-confirm {
  display: inline-block;
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mt-orange-dark);
}
.mt-section--dark .mt-confirm,
.mt-bleed .mt-confirm { color: var(--mt-orange); }

/* ---------- 6. Buttons and links ----------------------------------------- */

.mt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 56px;
  padding: 16px 32px;
  font-family: var(--mt-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0;
  text-transform: uppercase;
  border-radius: 0;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.mt-btn--primary { background: var(--mt-orange); color: var(--mt-ink); }
.mt-btn--primary:hover { background: var(--mt-paper); color: var(--mt-ink); }
.mt-btn--primary-ink:hover { background: var(--mt-ink); color: var(--mt-orange); }

.mt-btn--ink { background: var(--mt-ink); color: var(--mt-paper); }
.mt-btn--ink:hover { background: var(--mt-orange); color: var(--mt-ink); }

.mt-btn--ghost {
  font-weight: 700;
  color: var(--mt-paper);
  border: 1px solid rgba(247, 245, 242, .4);
}
.mt-btn--ghost:hover { border-color: var(--mt-orange); color: var(--mt-orange); }

.mt-btn--ghost-ink {
  font-weight: 700;
  color: var(--mt-ink);
  border: 1px solid var(--mt-rule);
}
.mt-btn--ghost-ink:hover { border-color: var(--mt-orange); color: var(--mt-orange-deep); }

.mt-btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.mt-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding-bottom: 8px;
  font-family: var(--mt-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--mt-ink);
  border-bottom: 1px solid var(--mt-rule);
  transition: color .18s ease, border-color .18s ease;
}
.mt-arrow:hover { color: var(--mt-orange-deep); border-bottom-color: var(--mt-orange); }

.mt-arrow--light { color: var(--mt-paper); border-bottom-color: rgba(247, 245, 242, .34); }
.mt-arrow--light:hover { color: var(--mt-orange); border-bottom-color: var(--mt-orange); }

.mt-arrow--rule {
  font-weight: 700;
  font-size: 12.5px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--mt-orange);
}
.mt-arrow--rule:hover { color: var(--mt-orange-deep); border-bottom-color: var(--mt-orange); }

/* ---------- 7. Placeholder frames ---------------------------------------- */
/* Used wherever a photo, logo or asset slot has no image yet. No invented imagery. */

.mt-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 18px 26px;
  background: rgba(213, 210, 205, .14);
  border: 1px dashed var(--mt-rule);
  font-family: var(--mt-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mt-muted-warm);
}
.mt-ph--dark {
  background: rgba(247, 245, 242, .05);
  border-color: rgba(213, 210, 205, .28);
  color: rgba(247, 245, 242, .58);
}
.mt-ph--fill { position: absolute; inset: 0; height: 100%; }
.mt-ph--logo { flex: none; width: auto; }

/* ---------- 8. Announcement bar ------------------------------------------ */

.mt-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 95;
  background: var(--mt-ink);
  color: var(--mt-paper);
  padding: 0 clamp(16px, 3vw, 40px);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.mt-topbar::-webkit-scrollbar { display: none; }

.mt-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  min-width: max-content;
  height: var(--mt-topbar);
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .17em;
  text-transform: uppercase;
  white-space: nowrap;
}
.mt-topbar__soft  { opacity: .62; }
.mt-topbar__alert { color: var(--mt-orange); }

/* Logged-in admin bar sits above everything fixed, so shift the fixed
   chrome down by its height. Front-end visitors are unaffected. */
.admin-bar .mt-topbar { top: 32px; }
.admin-bar .mt-header { top: calc(32px + var(--mt-topbar)); }
.admin-bar .mt-header__spacer { height: calc(32px + var(--mt-topbar) + 1px + var(--mt-navh)); }
.admin-bar .mt-drawer-scrim { top: 32px; }
.admin-bar { scroll-padding-top: calc(32px + var(--mt-topbar) + var(--mt-navh) + 16px); }

@media screen and (max-width: 782px) {
  .admin-bar .mt-topbar { top: 46px; }
  .admin-bar .mt-header { top: calc(46px + var(--mt-topbar)); }
  .admin-bar .mt-header__spacer { height: calc(46px + var(--mt-topbar) + 1px + var(--mt-navh)); }
  .admin-bar .mt-drawer-scrim { top: 46px; }
}

/* ---------- 9. Header ----------------------------------------------------- */

.mt-header {
  position: fixed;
  top: var(--mt-topbar);
  left: 0; right: 0;
  z-index: 90;
  background: rgba(247, 245, 242, .94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--mt-rule);
  transition: background-color .3s ease, border-color .3s ease;
}

.mt-header__inner {
  width: var(--mt-shell);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--mt-navh);
}

.mt-header__logo {
  display: flex;
  align-items: center;
  min-height: 44px;
  gap: 11px;
  flex: none;
  color: var(--mt-ink);
}
.mt-header__logo img { height: clamp(34px, 3.6vw, 48px); width: auto; }
.mt-header__logo .mt-logo--light { display: none; }

.mt-header__spacer { height: calc(var(--mt-topbar) + 1px + var(--mt-navh)); }

/* Optional transparent-over-hero mode (Customizer: Header > Transparent until scroll) */
.mt-header--transparent .mt-header {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
.mt-header--transparent .mt-header__spacer { display: none; }
.mt-header--transparent .mt-header .mt-nav > li > a,
.mt-header--transparent .mt-header .mt-nav__toggle { color: var(--mt-paper); }
.mt-header--transparent .mt-header .mt-logo--dark { display: none; }
.mt-header--transparent .mt-header .mt-logo--light { display: block; }
.mt-header--transparent .mt-header .mt-burger { border-color: rgba(247, 245, 242, .4); }
.mt-header--transparent .mt-header .mt-burger svg { stroke: var(--mt-paper); }

.mt-header--transparent.is-scrolled .mt-header {
  background: rgba(247, 245, 242, .94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--mt-rule);
}
.mt-header--transparent.is-scrolled .mt-header .mt-nav > li > a,
.mt-header--transparent.is-scrolled .mt-header .mt-nav__toggle { color: var(--mt-ink); }
.mt-header--transparent.is-scrolled .mt-header .mt-logo--dark { display: block; }
.mt-header--transparent.is-scrolled .mt-header .mt-logo--light { display: none; }
.mt-header--transparent.is-scrolled .mt-header .mt-burger { border-color: var(--mt-rule); }
.mt-header--transparent.is-scrolled .mt-header .mt-burger svg { stroke: var(--mt-ink); }

/* ---------- 10. Primary nav ----------------------------------------------- */

.mt-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-family: var(--mt-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.mt-nav > li { position: relative; display: flex; align-items: center; }

.mt-nav > li > a,
.mt-nav__toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--mt-ink);
  white-space: nowrap;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  transition: border-color .18s ease, color .18s ease;
}
.mt-nav > li > a:hover,
.mt-nav__toggle:hover,
.mt-nav > li.current-menu-item > a,
.mt-nav > li.current-menu-ancestor > a,
.mt-nav > li.current-menu-ancestor > .mt-nav__toggle { border-bottom-color: var(--mt-orange); }

.mt-nav__chev { flex: none; transition: transform .18s ease; }
.mt-nav > li.is-open .mt-nav__chev { transform: rotate(180deg); }

.mt-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  min-width: 246px;
  background: var(--mt-ink);
  border-top: 2px solid var(--mt-orange);
  padding: 8px 0;
  animation: mtFade .18s ease-out both;
  display: none;
  z-index: 5;
}
.mt-nav > li.is-open > .sub-menu { display: block; }
.mt-nav .sub-menu a {
  display: block;
  padding: 12px 22px;
  color: var(--mt-paper);
  font-size: 15px;
  letter-spacing: .13em;
}
.mt-nav .sub-menu a:hover { background: var(--mt-ink-raised); color: var(--mt-orange); }

.mt-header__cta { flex: none; padding: 14px 30px; min-height: 48px; font-size: 17px; }
.mt-header__cta:hover { background: var(--mt-ink); color: var(--mt-orange); }

.mt-burger {
  flex: none;
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  border: 1px solid var(--mt-rule);
}

@media (max-width: 1119px) {
  .mt-nav, .mt-header__cta { display: none; }
  .mt-burger { display: flex; }
}

/* ---------- 11. Mobile drawer --------------------------------------------- */

.mt-drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  justify-content: flex-end;
  background: rgba(18, 21, 23, .55);
}
.mt-drawer-scrim[hidden] { display: none; }

.mt-drawer {
  width: min(400px, 88vw);
  height: 100%;
  background: var(--mt-ink);
  color: var(--mt-paper);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  animation: mtDrawer .26s cubic-bezier(.32, .72, 0, 1) both;
}
.mt-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 26px;
  border-bottom: 1px solid var(--mt-rule-dark);
}
.mt-drawer__head img { height: 36px; width: auto; }
.mt-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 10px;
}
.mt-drawer__nav {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  font-family: var(--mt-display);
}
.mt-drawer__primary {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 17px 26px;
  color: var(--mt-paper);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.008em;
}
.mt-drawer__primary:hover { color: var(--mt-orange); }
.mt-drawer__num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--mt-orange);
}
.mt-drawer__rule { height: 1px; background: var(--mt-rule-dark); margin: 14px 26px; }
.mt-drawer__label {
  padding: 6px 26px 10px;
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mt-orange);
}
.mt-drawer__sub {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 26px;
  color: rgba(247, 245, 242, .82);
  font-size: 18px;
  font-weight: 500;
}
.mt-drawer__sub:hover { color: var(--mt-orange); }
.mt-drawer__sub:last-child { padding-bottom: 20px; }
.mt-drawer__foot {
  margin-top: auto;
  padding: 24px 26px 30px;
  border-top: 1px solid var(--mt-rule-dark);
  display: grid;
  gap: 10px;
}
.mt-drawer__foot .mt-btn { min-height: 52px; padding: 15px 20px; }
.mt-drawer__foot .mt-btn--ghost { border-color: rgba(213, 210, 205, .34); }

body.mt-drawer-open { overflow: hidden; }

/* ---------- 12. Hero ------------------------------------------------------ */

.mt-hero {
  position: relative;
  background: var(--mt-ink);
  overflow: hidden;
  min-height: clamp(560px, 88svh, 940px);
  display: flex;
  align-items: flex-end;
}
.mt-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
}
.mt-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(18, 21, 23, .86) 0%,
    rgba(18, 21, 23, .42) 42%,
    rgba(18, 21, 23, .06) 78%,
    rgba(18, 21, 23, .22) 100%);
}
.mt-hero__inner {
  position: relative;
  width: var(--mt-shell);
  margin-inline: auto;
  padding: clamp(64px, 9vw, 120px) 0 clamp(40px, 5vw, 66px);
}
.mt-hero__h1 { color: var(--mt-paper); }
.mt-hero__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 64px);
  margin-top: clamp(28px, 3.6vw, 48px);
}
.mt-hero__copy { max-width: 46ch; }
.mt-hero__sub {
  font-family: var(--mt-display);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.9vw, 1.5rem);
  line-height: 1.32;
  letter-spacing: -.006em;
  color: var(--mt-paper);
}
.mt-hero__subsub {
  margin-top: 14px;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.55;
  color: rgba(247, 245, 242, .74);
}
.mt-hero .mt-meta { margin-top: 22px; color: var(--mt-paper); }
.mt-hero .mt-btn { min-height: 56px; }
.mt-hero .mt-btn--primary { padding: 16px 34px; }

/* ---------- 13. Stat strip ------------------------------------------------ */

.mt-stats { background: var(--mt-ink); border-top: 1px solid rgba(213, 210, 205, .14); }
.mt-stats__grid {
  width: var(--mt-shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.mt-stat { padding: clamp(30px, 3.6vw, 52px) 0; }
.mt-stat + .mt-stat {
  border-left: 1px solid rgba(213, 210, 205, .14);
  padding-left: clamp(20px, 3vw, 44px);
}
.mt-stat__num {
  font-family: var(--mt-display);
  font-weight: 800;
  font-size: clamp(2.9rem, 5vw, 4.6rem);
  line-height: .9;
  letter-spacing: -.016em;
  color: var(--mt-orange);
}
.mt-stat__num small { font-size: .5em; letter-spacing: -.01em; }
.mt-stat__label {
  margin-top: 10px;
  font-family: var(--mt-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(247, 245, 242, .78);
}

/* ---------- 14. Two-column editorial -------------------------------------- */

.mt-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(36px, 5vw, 96px);
  align-items: start;
}
.mt-split--wide { gap: clamp(36px, 5vw, 90px); }
.mt-split--end  { align-items: end; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.mt-split--mid  { align-items: center; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(40px, 5vw, 80px); }

.mt-prose { display: grid; gap: 22px; max-width: 62ch; padding-top: clamp(0px, 1vw, 12px); }
.mt-h2--clamp { max-width: 20ch; }

/* ---------- 15. Pillars --------------------------------------------------- */

.mt-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  border-top: 1px solid var(--mt-rule);
}
.mt-pillar { padding: clamp(28px, 3vw, 44px) clamp(24px, 3vw, 52px); }
.mt-pillar:first-child { padding-left: 0; }
.mt-pillar:last-child  { padding-right: 0; }
.mt-pillar + .mt-pillar { border-left: 1px solid var(--mt-rule); }
.mt-pillar__head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.mt-pillar__num {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mt-muted);
}
.mt-pillar h3 { margin-bottom: 14px; }
.mt-pillar p { font-size: 1.04rem; line-height: 1.68; color: var(--mt-body-soft); }

/* ---------- 16. Stage rail ------------------------------------------------ */

.mt-stages { overflow: hidden; padding-block: clamp(72px, 9vw, 132px) clamp(60px, 7vw, 110px); }
.mt-stages__head {
  width: var(--mt-shell);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(38px, 4.5vw, 66px);
}
.mt-stages__head .mt-eyebrow { margin-bottom: 18px; }
.mt-stages__head .mt-h2 { max-width: 18ch; }

.mt-rail {
  display: flex;
  gap: clamp(16px, 1.6vw, 26px);
  overflow-x: auto;
  padding: 0 clamp(16px, 2.5vw, 40px) 26px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.mt-stage-card {
  flex: 0 0 clamp(240px, 22vw, 310px);
  scroll-snap-align: start;
  color: var(--mt-paper);
  display: block;
}
.mt-stage-card:hover { color: var(--mt-orange); }
.mt-stage-card:nth-child(even) { margin-top: clamp(0px, 3vw, 44px); }
.mt-stage-card__frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--mt-ink-raised);
}
.mt-stage-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
  transition: transform .6s cubic-bezier(.32, .72, 0, 1);
}
.mt-stage-card:hover .mt-stage-card__frame img { transform: scale(1.035); }
.mt-stage-card__num {
  position: absolute;
  top: 16px; left: 18px;
  font-family: var(--mt-display);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -.016em;
  color: var(--mt-orange);
}
.mt-stage-card h3 {
  margin-top: 20px;
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: -.01em;
  line-height: 1.14;
}
.mt-stage-card p {
  margin-top: 9px;
  font-size: .98rem;
  line-height: 1.58;
  color: var(--mt-on-dark-soft);
}

/* ---------- 17. Included list --------------------------------------------- */

.mt-price-row {
  margin-top: clamp(20px, 2.4vw, 32px);
  border-top: 1px solid var(--mt-rule);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 18px;
}
.mt-price {
  font-family: var(--mt-display);
  font-weight: 800;
  font-size: clamp(2.3rem, 3.6vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.016em;
}
.mt-price-note { font-size: 1.02rem; line-height: 1.5; color: var(--mt-body-soft); max-width: 26ch; }
.mt-price-note strong { font-weight: 600; color: var(--mt-ink); }

.mt-ticklist { margin-top: clamp(26px, 3vw, 38px); display: grid; }
.mt-ticklist li {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--mt-rule);
}
.mt-ticklist svg { flex: none; margin-top: 4px; }
.mt-ticklist span { font-size: 1.04rem; line-height: 1.55; }

.mt-included__figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.mt-included__copy { padding-top: clamp(0px, 2vw, 26px); }
.mt-included__copy .mt-h2 { max-width: 24ch; }
.mt-included__copy > p { margin-top: 20px; max-width: 52ch; }
.mt-included__copy .mt-btn { margin-top: clamp(28px, 3vw, 40px); }

/* ---------- 18. Full-bleed photo sections --------------------------------- */

.mt-bleed {
  position: relative;
  color: var(--mt-paper);
  overflow: hidden;
}
.mt-bleed__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mt-bleed__scrim { position: absolute; inset: 0; }
.mt-bleed__scrim--proof {
  background: linear-gradient(150deg, rgba(18, 21, 23, .94) 0%, rgba(18, 21, 23, .8) 52%, rgba(18, 21, 23, .62) 100%);
}
.mt-bleed__scrim--closing {
  background: linear-gradient(105deg, rgba(18, 21, 23, .93) 0%, rgba(18, 21, 23, .76) 46%, rgba(18, 21, 23, .4) 100%);
}
.mt-bleed__inner {
  position: relative;
  width: var(--mt-shell);
  margin-inline: auto;
  padding-block: clamp(72px, 9vw, 140px);
}

.mt-quotes {
  margin-top: clamp(38px, 4.5vw, 62px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: clamp(24px, 2.6vw, 40px);
}
.mt-quote { border-top: 2px solid var(--mt-orange); padding-top: 24px; }
.mt-quote p {
  font-family: var(--mt-serif);
  font-size: clamp(1.14rem, 1.6vw, 1.34rem);
  line-height: 1.5;
  font-style: italic;
  color: var(--mt-paper);
}
.mt-quote footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(247, 245, 242, .72);
}
.mt-quote__rating { color: var(--mt-orange); }

.mt-proof__foot {
  margin-top: clamp(38px, 4vw, 56px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
}
.mt-proof__score {
  font-family: var(--mt-display);
  font-weight: 600;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  letter-spacing: -.006em;
}
.mt-proof__score b { color: var(--mt-orange); font-weight: 600; }
.mt-proof__foot .mt-arrow { font-size: 11.5px; gap: 9px; padding-bottom: 6px; }

/* ---------- 19. Is Monster for you ---------------------------------------- */

.mt-forme .mt-h2 { max-width: 22ch; }
.mt-forme p { margin-top: 24px; max-width: 54ch; }
.mt-forme .mt-arrow { margin-top: 32px; }
.mt-forme figure img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.mt-forme figcaption { margin-top: 14px; }

/* ---------- 20. Route guide + drawing line -------------------------------- */

.mt-guide {
  position: relative;
  margin-top: clamp(72px, 9vw, 140px);
  background: var(--mt-paper);
  border-top: 1px solid var(--mt-rule);
  overflow: hidden;
}
.mt-guide__inner { padding-block: clamp(64px, 8vw, 120px); }
.mt-guide .mt-eyebrow { margin-bottom: 20px; }
.mt-guide .mt-h2 { max-width: 22ch; }
.mt-guide__copy > p { margin-top: 22px; max-width: 52ch; }
.mt-guide__copy .mt-btn { margin-top: 32px; }

.mt-routeline { position: relative; padding-left: 56px; max-width: 400px; margin-inline: auto; }
.mt-routeline__svg { position: absolute; left: 0; top: 0; width: 40px; height: 100%; }
.mt-routeline__draw { stroke-dasharray: 1; stroke-dashoffset: 1; }
.mt-routeline.is-drawn .mt-routeline__draw { animation: mtDraw 2.8s .1s cubic-bezier(.36, 0, .2, 1) forwards; }
.mt-routeline__list { display: grid; }
.mt-routeline__item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 6px 0 6px 4px;
  color: var(--mt-ink);
}
.mt-routeline__item:hover { color: var(--mt-orange-deep); }
.mt-routeline__pin {
  position: absolute;
  left: -36px;
  top: 50%;
  width: 9px; height: 9px;
  margin-top: -4.5px;
  margin-left: -4.5px;
  border-radius: 50%;
  background: var(--mt-ink);
}
.mt-routeline__pin--end {
  width: 13px; height: 13px;
  margin-top: -6.5px;
  margin-left: -6.5px;
  background: var(--mt-orange);
}
.mt-routeline__label {
  font-family: var(--mt-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.mt-routeline__label i { font-style: normal; color: var(--mt-orange-dark); }

/* ---------- 21. Trust strip ----------------------------------------------- */

.mt-trust { background: var(--mt-ink); color: var(--mt-paper); border-top: 1px solid rgba(213, 210, 205, .14); }
.mt-trust__inner {
  width: var(--mt-shell);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px clamp(20px, 3vw, 46px);
  padding-block: clamp(24px, 2.6vw, 34px);
  font-family: var(--mt-display);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.mt-trust__item { display: flex; align-items: center; gap: 9px; }
.mt-trust__item strong { font-weight: 700; }
.mt-trust__link {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 8px;
  color: var(--mt-orange);
  letter-spacing: .13em;
}
.mt-trust__link:hover { color: var(--mt-paper); }

/* ---------- 22. Closing CTA ----------------------------------------------- */

.mt-closing__copy { max-width: 58ch; }
.mt-closing p { margin-top: 24px; font-size: clamp(1.08rem, 1.5vw, 1.3rem); line-height: 1.6; color: rgba(247, 245, 242, .82); max-width: 52ch; }
.mt-closing .mt-btn-row { margin-top: clamp(30px, 3.4vw, 44px); }

/* ---------- 23. Partner strip + footer ------------------------------------ */

.mt-partners { border-bottom: 1px solid var(--mt-rule); }
.mt-partners__inner {
  width: var(--mt-shell);
  margin-inline: auto;
  padding-block: clamp(44px, 5vw, 70px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px clamp(28px, 4vw, 60px);
}
.mt-partners__label {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mt-muted);
  flex: none;
}
.mt-partners__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px clamp(20px, 3vw, 44px);
  flex: 1 1 400px;
}
.mt-partners__row img { max-height: 52px; width: auto; }
.mt-partners__inner .mt-arrow { font-size: 11.5px; gap: 9px; padding-bottom: 6px; }

.mt-footer { background: var(--mt-ink); color: var(--mt-paper); padding-top: clamp(56px, 7vw, 96px); }
.mt-footer__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(32px, 4vw, 60px);
}
.mt-footer__heading {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mt-orange);
  margin-bottom: 22px;
}
.mt-footer__list { display: grid; font-size: 1rem; }
.mt-footer__list a {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: var(--mt-on-dark);
}
.mt-footer__list a:hover { color: var(--mt-orange); }

.mt-footer__signup { min-width: 240px; }
.mt-footer__signup > p { font-size: 1rem; line-height: 1.6; color: rgba(247, 245, 242, .72); margin-bottom: 18px; }
.mt-footer__signup form { display: grid; gap: 10px; }
.mt-footer__signup input[type="text"],
.mt-footer__signup input[type="email"] {
  width: 100%;
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(213, 210, 205, .34);
  color: var(--mt-paper);
  font-family: var(--mt-serif);
  font-size: 1rem;
  padding: 12px 0;
  border-radius: 0;
}
.mt-footer__signup input::placeholder { color: rgba(247, 245, 242, .5); opacity: 1; }
.mt-footer__signup input:focus { outline: none; border-bottom-color: var(--mt-orange); }
.mt-footer__signup button[type="submit"],
.mt-footer__signup .wpcf7-submit {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  background: var(--mt-orange);
  color: var(--mt-ink);
  font-family: var(--mt-display);
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  padding: 15px 22px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}
.mt-footer__signup button[type="submit"]:hover,
.mt-footer__signup .wpcf7-submit:hover { background: var(--mt-paper); }

.mt-social { margin-top: 26px; display: flex; align-items: center; gap: 8px; }
.mt-social a {
  color: rgba(247, 245, 242, .72);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}
.mt-social a:hover { color: var(--mt-orange); }

.mt-footer__signoff {
  margin-top: clamp(48px, 6vw, 84px);
  padding-top: clamp(30px, 3.4vw, 44px);
  border-top: 1px solid var(--mt-rule-dark);
  font-family: var(--mt-display);
  font-weight: 500;
  font-size: clamp(1.02rem, 2.05vw, 1.66rem);
  letter-spacing: -.006em;
  color: var(--mt-paper);
  text-align: center;
  text-wrap: balance;
}

.mt-footer__legal {
  margin-top: clamp(32px, 4vw, 52px);
  padding-block: clamp(24px, 2.6vw, 32px);
  border-top: 1px solid var(--mt-rule-dark);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px clamp(24px, 4vw, 48px);
}
.mt-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px clamp(16px, 2.4vw, 30px);
  font-family: var(--mt-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(247, 245, 242, .56);
}
.mt-footer__legal-links a { display: flex; align-items: center; min-height: 44px; color: rgba(247, 245, 242, .56); }
.mt-footer__legal-links a:hover { color: var(--mt-orange); }
.mt-footer__powered { display: flex; align-items: center; gap: 14px; flex: none; }
.mt-footer__powered span {
  font-family: var(--mt-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(247, 245, 242, .48);
}
.mt-footer__powered img { height: clamp(24px, 2.4vw, 30px); width: auto; }

/* ---------- 24. Mobile sticky bar ----------------------------------------- */

.mt-mobilebar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--mt-ink);
  border-top: 1px solid rgba(213, 210, 205, .2);
}
.mt-mobilebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mt-display);
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  padding: 19px 12px;
  text-align: center;
}
.mt-mobilebar__primary { background: var(--mt-orange); color: var(--mt-ink); }
.mt-mobilebar__primary:hover { color: var(--mt-ink); }
.mt-mobilebar__secondary { color: var(--mt-paper); font-weight: 700; }
.mt-mobilebar__secondary:hover { color: var(--mt-orange); }

.mt-mobilebar-spacer { height: 84px; }

@media (min-width: 1120px) {
  .mt-mobilebar, .mt-mobilebar-spacer, .mt-drawer-scrim { display: none !important; }
}

/* ---------- 25. Editorial page shell (page.php / single.php) -------------- */

.mt-page-hero { background: var(--mt-ink); color: var(--mt-paper); padding-block: clamp(56px, 7vw, 104px); }
.mt-page-hero .mt-eyebrow { color: var(--mt-orange); margin-bottom: 18px; }
.mt-page-hero h1 { max-width: 22ch; }

.mt-entry { padding-block: clamp(56px, 7vw, 104px); }
.mt-entry__body { max-width: 68ch; }
.mt-entry__body > * + * { margin-top: 22px; }
.mt-entry__body h2 {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -.014em;
  margin-top: clamp(38px, 4vw, 54px);
}
.mt-entry__body h3 {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: clamp(1.24rem, 2vw, 1.5rem);
  line-height: 1.14;
  letter-spacing: -.01em;
  margin-top: clamp(28px, 3vw, 38px);
}
.mt-entry__body p { font-size: 1.08rem; line-height: 1.72; color: var(--mt-body-soft); }
.mt-entry__body ul { display: grid; gap: 10px; }
.mt-entry__body ul li { position: relative; padding-left: 22px; font-size: 1.04rem; line-height: 1.62; color: var(--mt-body-soft); }
.mt-entry__body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .72em;
  width: 7px; height: 7px;
  background: var(--mt-orange);
}
.mt-entry__body ol { list-style: decimal; padding-left: 22px; display: grid; gap: 10px; }
.mt-entry__body blockquote {
  border-top: 2px solid var(--mt-orange);
  padding-top: 20px;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
}
.mt-entry__body img { margin-block: 28px; }
.mt-entry__body hr { border: 0; border-top: 1px solid var(--mt-rule); margin-block: 38px; }
.mt-entry__body table th,
.mt-entry__body table td { border-bottom: 1px solid var(--mt-rule); padding: 14px 12px; text-align: left; }
.mt-entry__body table th {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mt-muted);
}

/* ---------- 26. Accordion (FAQs, Is It For Me) ---------------------------- */

.mt-accordion { border-top: 1px solid var(--mt-rule); }
.mt-accordion__item { border-bottom: 1px solid var(--mt-rule); }
.mt-accordion__trigger {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.2;
  letter-spacing: -.008em;
  color: var(--mt-ink);
}
.mt-accordion__trigger:hover { color: var(--mt-orange-deep); }
.mt-accordion__icon { flex: none; margin-top: 3px; transition: transform .22s ease; }
.mt-accordion__trigger[aria-expanded="true"] .mt-accordion__icon { transform: rotate(45deg); }
.mt-accordion__panel { display: none; padding-bottom: 26px; max-width: 68ch; }
.mt-accordion__panel.is-open { display: block; animation: mtFade .22s ease-out both; }
.mt-accordion__panel p { font-size: 1.04rem; line-height: 1.7; color: var(--mt-body-soft); }
.mt-accordion__panel p + p { margin-top: 14px; }

/* ---------- 27. Contact Form 7 -------------------------------------------- */

.mt-form { max-width: 44rem; }
.mt-form .mt-field { display: grid; gap: 8px; margin-bottom: 22px; }
.mt-form .mt-field > label,
.mt-form label > span.mt-label {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mt-muted);
}
.mt-form input[type="text"],
.mt-form input[type="email"],
.mt-form input[type="tel"],
.mt-form select,
.mt-form textarea,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--mt-rule);
  border-radius: 0;
  color: var(--mt-ink);
  font-family: var(--mt-serif);
  font-size: 1.02rem;
  line-height: 1.5;
  padding: 14px 16px;
  min-height: 52px;
  transition: border-color .18s ease;
}
.mt-form textarea, .wpcf7 textarea { min-height: 150px; resize: vertical; }
.mt-form input:focus, .mt-form select:focus, .mt-form textarea:focus,
.wpcf7 input:focus, .wpcf7 select:focus, .wpcf7 textarea:focus {
  outline: none;
  border-color: var(--mt-orange);
}
.mt-form .mt-privacy { font-size: .96rem; line-height: 1.6; color: var(--mt-muted); margin-top: -6px; margin-bottom: 22px; }

.wpcf7-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 34px;
  background: var(--mt-orange);
  color: var(--mt-ink);
  font-family: var(--mt-display);
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease;
}
.wpcf7-form .wpcf7-submit:hover { background: var(--mt-ink); color: var(--mt-orange); }

.wpcf7-not-valid-tip {
  font-family: var(--mt-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #B3300F;
  margin-top: 6px;
}
.wpcf7 form .wpcf7-response-output {
  margin: 24px 0 0;
  border: 0;
  border-left: 3px solid var(--mt-orange);
  padding: 14px 18px;
  background: rgba(241, 140, 32, .08);
  font-size: 1rem;
}
.wpcf7-spinner { margin-left: 12px; }

/* ---------- 28. Utility --------------------------------------------------- */

.mt-hide { display: none !important; }
.mt-mt-0 { margin-top: 0 !important; }

@media (max-width: 720px) {
  .mt-pillar { padding-inline: 0; }
  .mt-pillar + .mt-pillar { border-left: 0; border-top: 1px solid var(--mt-rule); }
  .mt-stat + .mt-stat { border-left: 0; padding-left: 0; border-top: 1px solid rgba(213, 210, 205, .14); }
  .mt-trust__link { margin-left: 0; }
  .mt-footer__legal { justify-content: flex-start; }
}

/* =========================================================================
   29. Sub-page components
   ========================================================================= */

section[id] { scroll-margin-top: calc(var(--mt-topbar) + var(--mt-navh) + 60px); }
.admin-bar section[id] { scroll-margin-top: calc(32px + var(--mt-topbar) + var(--mt-navh) + 60px); }

/* ---------- Page hero over photography ----------------------------------- */

.mt-phero {
  position: relative;
  color: var(--mt-paper);
  overflow: hidden;
  padding: clamp(76px, 9.5vw, 158px) 0 clamp(60px, 7.5vw, 116px);
}
.mt-phero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}
.mt-phero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(18, 21, 23, .72) 0%, rgba(18, 21, 23, .22) 48%, rgba(18, 21, 23, .4) 100%),
    linear-gradient(100deg, rgba(18, 21, 23, .88) 0%, rgba(18, 21, 23, .66) 45%, rgba(18, 21, 23, .4) 76%, rgba(18, 21, 23, .28) 100%);
}
.mt-phero__inner { position: relative; width: var(--mt-shell); margin-inline: auto; }
.mt-phero .mt-eyebrow { margin-bottom: 22px; }

.mt-h1--page {
  font-family: var(--mt-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 9vw, 8rem);
  line-height: .84;
  letter-spacing: -.018em;
  text-transform: uppercase;
  text-wrap: balance;
  max-width: 16ch;
  color: var(--mt-paper);
}

.mt-phero__split {
  margin-top: clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 90px);
  align-items: start;
}
.mt-phero__claim {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -.012em;
  max-width: 22ch;
  border-top: 2px solid var(--mt-orange);
  padding-top: 24px;
  color: var(--mt-paper);
}
.mt-phero__prose { display: grid; gap: 20px; max-width: 62ch; }
.mt-phero__prose > p:first-child {
  font-size: clamp(1.12rem, 1.5vw, 1.3rem);
  line-height: 1.62;
  color: var(--mt-paper);
}
.mt-phero__prose > p {
  font-size: clamp(1.02rem, 1.3vw, 1.14rem);
  line-height: 1.7;
  color: rgba(247, 245, 242, .86);
}

/* ---------- Route map block ---------------------------------------------- */

.mt-map { background: var(--mt-ink); color: var(--mt-paper); padding-block: clamp(52px, 6.5vw, 104px); }
.mt-map__grid {
  width: var(--mt-shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.mt-map__copy { order: 1; }
.mt-map__line { order: 2; }
.mt-map__copy h2 {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1.04;
  letter-spacing: -.014em;
  max-width: 20ch;
  text-wrap: balance;
}
.mt-map__copy > p {
  margin-top: 20px;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.66;
  color: rgba(247, 245, 242, .76);
  max-width: 50ch;
}
.mt-map__copy .mt-btn-row { margin-top: clamp(26px, 3vw, 36px); }

.mt-note {
  margin-top: clamp(26px, 3vw, 38px);
  padding: 22px 24px;
  border: 1px solid var(--mt-rule);
  border-left: 2px solid var(--mt-orange);
  max-width: 52ch;
}
.mt-note p:last-child { font-size: 1.02rem; line-height: 1.62; color: var(--mt-body-soft); }
.mt-note .mt-eyebrow { margin-bottom: 12px; }
.mt-note--dark { border-color: rgba(213, 210, 205, .24); border-left-color: var(--mt-orange); }
.mt-note--dark p:last-child { color: rgba(247, 245, 242, .76); }
.mt-note--dark .mt-eyebrow { color: var(--mt-orange); }

/* Larger route line variant used on the Route page map block. */
.mt-routeline--map { max-width: 470px; }
.mt-routeline--map .mt-routeline__item { flex-direction: column; justify-content: center; align-items: flex-start; min-height: 76px; padding: 8px 0 8px 4px; color: var(--mt-paper); }
.mt-routeline--map .mt-routeline__item:hover { color: var(--mt-orange); }
.mt-routeline--map .mt-routeline__pin { background: var(--mt-orange); }
.mt-routeline--map .mt-routeline__label i { color: var(--mt-orange); }
.mt-routeline--map .mt-routeline__sub {
  margin-top: 4px;
  font-family: var(--mt-serif);
  font-size: 13.5px;
  line-height: 1.4;
  color: rgba(247, 245, 242, .62);
}
.mt-routeline--map .mt-routeline__svg path:first-child { stroke: rgba(213, 210, 205, .22); }

/* ---------- Sticky stage nav ---------------------------------------------- */

.mt-stagenav {
  position: sticky;
  top: calc(var(--mt-topbar) + var(--mt-navh));
  z-index: 70;
  background: rgba(18, 21, 23, .95);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(213, 210, 205, .18);
}
.admin-bar .mt-stagenav { top: calc(32px + var(--mt-topbar) + var(--mt-navh)); }
@media screen and (max-width: 782px) {
  .admin-bar .mt-stagenav { top: calc(46px + var(--mt-topbar) + var(--mt-navh)); }
}
.mt-stagenav__inner {
  width: var(--mt-shell);
  margin-inline: auto;
  display: flex;
  gap: clamp(14px, 2vw, 30px);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  min-height: 56px;
  align-items: center;
  font-family: var(--mt-display);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.mt-stagenav__inner::-webkit-scrollbar { display: none; }
.mt-stagenav a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: rgba(247, 245, 242, .82);
}
.mt-stagenav a:hover { color: var(--mt-orange); }
.mt-stagenav a span { font-weight: 800; color: var(--mt-orange); }

/* ---------- Data table ----------------------------------------------------- */

.mt-table-scroll { overflow-x: auto; }
.mt-table { width: 100%; min-width: 720px; border-collapse: collapse; text-align: left; }
.mt-table thead tr { border-bottom: 1px solid var(--mt-ink); }
.mt-table th {
  padding: 0 16px 14px 0;
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mt-muted);
}
.mt-table th:last-child, .mt-table td:last-child { padding-right: 0; }
.mt-table th:first-child { width: 56px; }
.mt-table tbody tr { border-bottom: 1px solid var(--mt-rule); }
.mt-table td { padding: 18px 16px 18px 0; font-size: 1rem; color: var(--mt-body-soft); }
.mt-table__n {
  font-family: var(--mt-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -.012em;
  color: var(--mt-orange-dark);
}
.mt-table__name { padding-block: 4px !important; }
.mt-table__name a {
  font-family: var(--mt-display);
  display: flex;
  align-items: center;
  min-height: 44px;
  font-weight: 700;
  font-size: 1.14rem;
  letter-spacing: -.008em;
  color: var(--mt-ink);
}
.mt-table__name a:hover { color: var(--mt-orange-deep); }
.mt-table__pair { display: inline-flex; align-items: center; gap: 9px; }
.mt-table__rating { font-family: var(--mt-display); font-weight: 700; font-size: 1rem; color: var(--mt-ink); }

.mt-flag {
  margin-top: 22px;
  padding: 16px 20px;
  border-left: 2px solid var(--mt-orange);
  background: #EFEBE6;
  font-family: var(--mt-display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #6B4A18;
}

/* ---------- Stage sections ------------------------------------------------ */

.mt-stage { border-top: 1px solid var(--mt-rule); }

.mt-stage__banner {
  position: relative;
  min-height: clamp(320px, 46vw, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--mt-ink);
}
.mt-stage__banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .88; }
.mt-stage__banner .mt-ph { position: absolute; inset: 0; height: 100%; }
.mt-stage__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 21, 23, .9) 0%, rgba(18, 21, 23, .34) 46%, rgba(18, 21, 23, .04) 100%);
}
.mt-stage__title-row {
  position: relative;
  width: var(--mt-shell);
  margin-inline: auto;
  padding-block: clamp(32px, 4vw, 60px);
  display: flex;
  align-items: baseline;
  gap: clamp(14px, 2vw, 28px);
  flex-wrap: wrap;
}
.mt-stage__num {
  font-family: var(--mt-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 9vw, 8rem);
  line-height: .8;
  letter-spacing: -.02em;
  color: var(--mt-orange);
}
.mt-stage__title {
  font-family: var(--mt-display);
  font-weight: 800;
  font-size: clamp(2rem, 5.4vw, 4.4rem);
  line-height: .92;
  letter-spacing: -.016em;
  text-transform: uppercase;
  color: var(--mt-paper);
}

.mt-stage__stats { background: var(--mt-ink-raised); color: var(--mt-paper); }
.mt-stage__stats-grid {
  width: var(--mt-shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
}
.mt-stat-sm { padding: clamp(20px, 2.4vw, 30px) 0; }
.mt-stat-sm + .mt-stat-sm {
  border-left: 1px solid var(--mt-rule-dark);
  padding-left: clamp(16px, 2vw, 30px);
}
.mt-stat-sm__label {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(247, 245, 242, .6);
}
.mt-stat-sm__value {
  margin-top: 8px;
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: -.01em;
}
.mt-stat-sm__value--orange { color: var(--mt-orange); }

.mt-stage__body { padding-block: clamp(48px, 6vw, 92px); }
.mt-stage__grid {
  width: var(--mt-shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 84px);
  align-items: start;
}
.mt-stage__main { display: grid; gap: 20px; max-width: 62ch; }
.mt-stage__lede {
  font-family: var(--mt-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.2;
  letter-spacing: -.012em;
  color: var(--mt-ink);
}
.mt-stage__main p { font-size: clamp(1.02rem, 1.3vw, 1.14rem); line-height: 1.7; color: var(--mt-body-soft); }
.mt-stage__close {
  font-family: var(--mt-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  letter-spacing: -.008em;
  color: var(--mt-ink) !important;
  border-top: 1px solid var(--mt-rule);
  padding-top: 20px;
}
.mt-stage__side { display: grid; gap: clamp(28px, 3.4vw, 44px); }
.mt-stage__side .mt-eyebrow { display: block; margin-bottom: 18px; }

.mt-checklist { display: grid; }
.mt-checklist li {
  display: flex;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--mt-rule);
}
.mt-checklist svg { flex: none; margin-top: 3px; }
.mt-checklist span { font-size: 1.04rem; line-height: 1.55; }

.mt-tip {
  border: 1px solid var(--mt-rule);
  border-left: 3px solid var(--mt-orange);
  padding: clamp(22px, 2.6vw, 32px);
}
.mt-tip .mt-eyebrow { margin-bottom: 14px; }
.mt-tip p { font-size: clamp(1.02rem, 1.3vw, 1.14rem); line-height: 1.68; color: var(--mt-body); }

.mt-elev svg { height: auto; display: block; width: 100%; }
.mt-elev__ends {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-family: var(--mt-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mt-muted);
}

.mt-endcard {
  background: var(--mt-ink);
  color: var(--mt-paper);
  padding: clamp(22px, 2.6vw, 30px);
}
.mt-endcard .mt-eyebrow { color: var(--mt-orange); margin-bottom: 12px; }
.mt-endcard p { font-size: 1.06rem; line-height: 1.66; color: rgba(247, 245, 242, .82); }
.mt-endcard p + p { margin-top: 14px; }

/* ---------- Simple two-column closing block ------------------------------- */

.mt-duo {
  border-top: 1px solid var(--mt-rule);
  padding-block: clamp(56px, 7vw, 104px);
}
.mt-duo__grid {
  width: var(--mt-shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 84px);
  align-items: start;
}
.mt-duo__grid h2 {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.04;
  letter-spacing: -.014em;
  max-width: 18ch;
  text-wrap: balance;
}
.mt-duo__body { max-width: 62ch; }
.mt-duo__body > p { font-size: clamp(1.06rem, 1.4vw, 1.2rem); line-height: 1.66; color: var(--mt-body-soft); }
.mt-duo__body .mt-btn { margin-top: 30px; }

.mt-section-head {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.06;
  letter-spacing: -.014em;
  margin-bottom: clamp(28px, 3.4vw, 44px);
}

/* ---------- 30. What's Included ------------------------------------------- */

.mt-dayshape { background: var(--mt-ink); color: var(--mt-paper); padding-block: clamp(56px, 7vw, 104px); }
.mt-dayshape .mt-eyebrow { color: var(--mt-orange); margin-bottom: 20px; }
.mt-dayshape h2 {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.06;
  letter-spacing: -.014em;
  max-width: 26ch;
  text-wrap: balance;
}
.mt-dayshape dl { margin-top: clamp(34px, 4vw, 52px); display: grid; }
.mt-dayshape dl > div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px clamp(28px, 4vw, 64px);
  padding-block: clamp(20px, 2.4vw, 28px);
  border-top: 1px solid rgba(213, 210, 205, .18);
}
.mt-dayshape dt {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: clamp(1.16rem, 1.8vw, 1.44rem);
  letter-spacing: -.01em;
  color: var(--mt-orange);
}
.mt-dayshape dd { font-size: 1.06rem; line-height: 1.66; color: rgba(247, 245, 242, .8); max-width: 56ch; }
.mt-dayshape__close {
  margin-top: clamp(30px, 3.6vw, 44px);
  padding-top: clamp(24px, 3vw, 34px);
  border-top: 1px solid rgba(213, 210, 205, .18);
  font-family: var(--mt-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  letter-spacing: -.008em;
  max-width: 46ch;
}

.mt-headblock .mt-eyebrow { display: block; margin-bottom: 18px; }
.mt-headblock h2 {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.06;
  letter-spacing: -.014em;
  text-wrap: balance;
  max-width: 24ch;
}
.mt-headblock > p {
  margin-top: 18px;
  font-size: clamp(1.02rem, 1.3vw, 1.14rem);
  line-height: 1.7;
  color: var(--mt-body-soft);
  max-width: 52ch;
}

.mt-cats { margin-top: clamp(28px, 3.4vw, 44px); }
.mt-cat {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  padding-block: clamp(40px, 5vw, 68px);
  border-top: 1px solid var(--mt-rule);
}
.mt-cat__n {
  font-family: var(--mt-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -.014em;
  color: var(--mt-orange-dark);
  margin-bottom: 14px;
}
.mt-cat h3 {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}
.mt-cat__head img,
.mt-cat__head .mt-ph { margin-top: 22px; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.mt-cat__list { max-width: 62ch; }

.mt-richlist { display: grid; }
.mt-richlist li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--mt-rule);
}
.mt-richlist svg { flex: none; margin-top: 4px; }
.mt-richlist span { font-size: 1.04rem; line-height: 1.58; }
.mt-richlist strong { font-weight: 600; color: var(--mt-ink); }

.mt-split-head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.mt-section--dark .mt-richlist li,
.mt-richlist--dark li { border-bottom-color: rgba(213, 210, 205, .18); }
.mt-section--dark .mt-richlist strong,
.mt-richlist--dark strong { color: var(--mt-paper); }
.mt-section--dark .mt-richlist span,
.mt-richlist--dark span { color: rgba(247, 245, 242, .82); }
.mt-section--dark .mt-headblock > p { color: rgba(247, 245, 242, .78); }
.mt-section--dark .mt-flag { background: rgba(241, 140, 32, .1); color: var(--mt-orange); }

/* ---------- 31. Entry & Pricing, Is It For Me ----------------------------- */

.mt-pricecards { background: var(--mt-ink); color: var(--mt-paper); padding-block: clamp(56px, 7vw, 104px); }
.mt-pricecards__grid {
  width: var(--mt-shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(32px, 4vw, 70px);
  align-items: end;
}
.mt-pricecard + .mt-pricecard {
  border-left: 1px solid rgba(213, 210, 205, .2);
  padding-left: clamp(20px, 3vw, 44px);
}
.mt-pricecard__label {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(247, 245, 242, .6);
  margin-bottom: 14px;
}
.mt-pricecard__value {
  font-family: var(--mt-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  line-height: .9;
  letter-spacing: -.02em;
  color: var(--mt-orange);
}
.mt-pricecard__value span { font-size: .3em; font-weight: 600; }
.mt-pricecard__note { margin-top: 12px; font-size: 1.04rem; color: rgba(247, 245, 242, .72); }
.mt-pricecards__actions {
  width: var(--mt-shell);
  margin-inline: auto;
  margin-top: clamp(36px, 4vw, 56px);
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid rgba(213, 210, 205, .2);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.mt-band { background: #EFEBE6; padding-block: clamp(56px, 7vw, 104px); }

.mt-datelist { display: grid; max-width: 62ch; }
.mt-datelist > div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 6px 30px;
  padding-block: 15px;
  border-bottom: 1px solid var(--mt-rule);
}
.mt-datelist dt {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: 1.04rem;
  letter-spacing: -.006em;
}
.mt-datelist dd { font-size: 1.04rem; color: var(--mt-body-soft); }

.mt-table--compare th:first-child { width: 22%; }
.mt-table--compare thead th:last-child { color: var(--mt-orange-dark); }
.mt-table--compare tbody th {
  padding: 18px 16px 18px 0;
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: -.008em;
  text-transform: none;
  color: var(--mt-ink);
  vertical-align: top;
}
.mt-table--compare td { line-height: 1.55; vertical-align: top; color: var(--mt-muted); }
.mt-table--compare td:last-child { color: var(--mt-body); }

.mt-bleedfig img,
.mt-bleedfig .mt-ph { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; }
.mt-bleedfig figcaption { width: var(--mt-shell); margin-inline: auto; margin-top: 14px; }

.mt-pullquote { padding-block: clamp(60px, 7vw, 110px); }
.mt-pullquote blockquote { max-width: 32ch; }
.mt-pullquote blockquote p {
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  line-height: 1.3;
  font-style: italic;
}
.mt-pullquote blockquote footer {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(247, 245, 242, .72);
}

@media (max-width: 720px) {
  .mt-pricecard + .mt-pricecard { border-left: 0; padding-left: 0; }
}

/* ---------- 32. FAQs, Reviews --------------------------------------------- */

.mt-faqgroup { padding-block: clamp(48px, 6vw, 88px); }
.mt-faqgroup__grid {
  width: var(--mt-shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(28px, 4vw, 70px);
  align-items: start;
}
.mt-faqs { display: grid; }

details.mt-faq { border-bottom: 1px solid var(--mt-rule); }
details.mt-faq > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding-block: 16px;
  cursor: pointer;
  list-style: none;
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
  letter-spacing: -.008em;
}
details.mt-faq > summary::-webkit-details-marker { display: none; }
details.mt-faq > summary:hover { color: var(--mt-orange-deep); }
details.mt-faq > summary svg { flex: none; transition: transform .22s ease; }
details.mt-faq[open] > summary svg { transform: rotate(180deg); }
details.mt-faq[open] > summary { color: var(--mt-orange-deep); }
.mt-faq__body { padding: 0 0 22px; display: grid; gap: 14px; max-width: 62ch; }
.mt-faq__body p { font-size: clamp(1.02rem, 1.3vw, 1.14rem); line-height: 1.7; color: var(--mt-body-soft); }

.mt-askus {
  padding-block: clamp(48px, 6vw, 88px);
  border-top: 1px solid var(--mt-rule);
}
.mt-askus__inner {
  width: var(--mt-shell);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mt-reviewwall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: clamp(24px, 2.6vw, 40px);
}
.mt-reviewwall .mt-quote { border-top-color: var(--mt-orange); }
.mt-reviewwall .mt-quote p { color: var(--mt-ink); font-style: italic; }
.mt-reviewwall .mt-quote footer { color: var(--mt-muted); }

.mt-photogrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(10px, 1.2vw, 18px);
  margin-top: clamp(28px, 3.4vw, 44px);
}
.mt-photogrid img,
.mt-photogrid .mt-ph { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

/* ---------- 33. Partners, Contact, Thank You ------------------------------ */

.mt-logogrid {
  margin-top: clamp(28px, 3.4vw, 42px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}
.mt-logogrid__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 128px;
  padding: 18px;
  border: 1px dashed var(--mt-rule);
  background: #FFFFFF;
  font-family: var(--mt-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mt-muted-warm);
  text-align: center;
}
.mt-logogrid__cell--filled { border-style: solid; }
.mt-logogrid__cell img { max-height: 84px; width: auto; }

.mt-contact { background: var(--mt-ink); color: var(--mt-paper); padding-block: clamp(56px, 7vw, 104px); }
.mt-contact__grid {
  width: var(--mt-shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 84px);
  align-items: start;
}
.mt-contact__routes { display: grid; gap: clamp(24px, 3vw, 36px); }
.mt-contact__route { padding-top: 22px; border-top: 1px solid rgba(213, 210, 205, .2); }
.mt-contact__route h2 {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.mt-contact__route p { font-size: 1.02rem; line-height: 1.62; color: rgba(247, 245, 242, .72); max-width: 44ch; }
.mt-contact__email {
  margin-top: 12px;
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: .02em;
  color: var(--mt-orange);
}
.mt-contact__email a { color: var(--mt-orange); }
.mt-contact__email a:hover { color: var(--mt-paper); }

.mt-contact fieldset { border: 0; padding: 0; margin: 0; }
.mt-contact legend {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mt-orange);
  margin-bottom: 22px;
  padding: 0;
}
.mt-contact .mt-field > label,
.mt-contact label > .mt-label { color: rgba(247, 245, 242, .7); }
.mt-contact input[type="text"],
.mt-contact input[type="email"],
.mt-contact input[type="tel"],
.mt-contact select,
.mt-contact textarea,
.mt-contact .wpcf7 input,
.mt-contact .wpcf7 select,
.mt-contact .wpcf7 textarea {
  background: rgba(247, 245, 242, .04);
  border-color: rgba(213, 210, 205, .28);
  color: var(--mt-paper);
}
.mt-contact input::placeholder,
.mt-contact textarea::placeholder { color: rgba(247, 245, 242, .42); }
.mt-contact select option { color: var(--mt-ink); }
.mt-contact .wpcf7-form .wpcf7-submit:hover { background: var(--mt-paper); color: var(--mt-ink); }
.mt-contact .mt-privacy { color: rgba(247, 245, 242, .6); }

.mt-thanks {
  position: relative;
  color: var(--mt-paper);
  overflow: hidden;
  min-height: clamp(520px, 70vh, 760px);
  display: flex;
  align-items: center;
}
.mt-thanks__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(18, 21, 23, .9) 0%, rgba(18, 21, 23, .7) 48%, rgba(18, 21, 23, .36) 100%);
}
.mt-thanks__inner {
  position: relative;
  width: var(--mt-shell);
  margin-inline: auto;
  padding-block: clamp(56px, 7vw, 100px);
}
.mt-thanks__badge { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.mt-thanks h1 {
  font-family: var(--mt-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  line-height: .92;
  letter-spacing: -.018em;
  text-transform: uppercase;
  text-wrap: balance;
  max-width: 20ch;
}
.mt-thanks__prose { margin-top: 26px; display: grid; gap: 18px; max-width: 56ch; }
.mt-thanks__prose p { font-size: clamp(1.06rem, 1.5vw, 1.28rem); line-height: 1.62; color: rgba(247, 245, 242, .84); }
.mt-thanks__next { margin-top: clamp(30px, 3.4vw, 44px); display: grid; max-width: 60ch; }
.mt-thanks__next li {
  display: flex;
  gap: 14px;
  padding-block: 14px;
  border-top: 1px solid rgba(213, 210, 205, .2);
}
.mt-thanks__next svg { flex: none; margin-top: 4px; }
.mt-thanks__next span { font-size: 1.04rem; line-height: 1.58; color: rgba(247, 245, 242, .84); }
.mt-thanks .mt-btn-row { margin-top: clamp(30px, 3.4vw, 44px); }

/* ---------- 34. Register Interest, Legal ---------------------------------- */

.mt-getlist { display: grid; margin-top: clamp(26px, 3vw, 38px); }
.mt-getlist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  padding-block: 18px;
  border-top: 1px solid var(--mt-rule);
}
.mt-getlist__n {
  grid-row: span 2;
  font-family: var(--mt-display);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -.012em;
  color: var(--mt-orange-dark);
}
.mt-getlist__title {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  letter-spacing: -.008em;
}
.mt-getlist__desc { font-size: 1.02rem; line-height: 1.6; color: var(--mt-body-soft); }

.mt-downloads {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
  margin-top: clamp(28px, 3.4vw, 42px);
}
.mt-download {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid var(--mt-rule);
  background: #FFFFFF;
  color: var(--mt-ink);
  min-height: 176px;
}
a.mt-download:hover { border-color: var(--mt-orange); color: var(--mt-ink); }
.mt-download__tag {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mt-orange-dark);
}
.mt-download h3 {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: clamp(1.16rem, 1.8vw, 1.4rem);
  letter-spacing: -.01em;
}
.mt-download p { font-size: .99rem; line-height: 1.55; color: var(--mt-body-soft); }
.mt-download svg { margin-top: auto; }

.mt-anchornav {
  position: sticky;
  top: calc(var(--mt-topbar) + var(--mt-navh));
  z-index: 70;
  background: rgba(247, 245, 242, .95);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--mt-rule);
}
.admin-bar .mt-anchornav { top: calc(32px + var(--mt-topbar) + var(--mt-navh)); }
@media screen and (max-width: 782px) {
  .admin-bar .mt-anchornav { top: calc(46px + var(--mt-topbar) + var(--mt-navh)); }
}
.mt-anchornav__inner {
  width: var(--mt-shell);
  margin-inline: auto;
  display: flex;
  gap: clamp(14px, 2vw, 30px);
  overflow-x: auto;
  scrollbar-width: none;
  min-height: 56px;
  align-items: center;
  font-family: var(--mt-display);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.mt-anchornav__inner::-webkit-scrollbar { display: none; }
.mt-anchornav a { display: flex; align-items: center; min-height: 44px; color: var(--mt-ink); }
.mt-anchornav a:hover { color: var(--mt-orange-deep); }

.mt-legal { padding-block: clamp(44px, 5.5vw, 80px); border-top: 1px solid var(--mt-rule); }
.mt-legal__grid {
  width: var(--mt-shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(28px, 4vw, 70px);
  align-items: start;
}
.mt-legal__n {
  font-family: var(--mt-display);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -.012em;
  color: var(--mt-orange-dark);
  margin-bottom: 14px;
}
.mt-legal__grid h2 {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.06;
  letter-spacing: -.014em;
  max-width: 20ch;
}
.mt-legal__body { max-width: 68ch; display: grid; gap: 16px; }
.mt-legal__body p { font-size: clamp(1.02rem, 1.3vw, 1.14rem); line-height: 1.7; color: var(--mt-body-soft); }
.mt-legal__body h3 {
  font-family: var(--mt-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  letter-spacing: -.008em;
  margin-top: 12px;
}
.mt-legal__body ul { display: grid; gap: 8px; }
.mt-legal__body ul li { position: relative; padding-left: 20px; font-size: 1.02rem; line-height: 1.62; color: var(--mt-body-soft); }
.mt-legal__body ul li::before { content: ""; position: absolute; left: 0; top: .68em; width: 6px; height: 6px; background: var(--mt-orange); }
