/* ============================================================
   Prismi — MT Sections
   Info boxes · Category gallery · Video section
   Scoped per widget prefix. No :has(), no @container, no @layer.

   TYPE SYSTEM
     Headings : "Lexend Deca", sans-serif · 600 · 42px / 55px
     Body     : Poppins, sans-serif · 400 · 16px / 28px

   Backgrounds run edge to edge; content sits inside a rail
   capped at --mt-max (1200px by default).
   ============================================================ */

/* ============================================================
   1. INFO BOXES
   ============================================================ */
.mtb-scope{
  --mtb-ink:      #0B1F29;
  --mtb-ink-soft: #5A6B73;
  --mtb-crimson:  #E4194F;
  --mtb-surf:     #2FA3A5;
  --mtb-paper:    #FFFFFF;
  --mtb-wash:     #F6F4F0;
  --mtb-line:     rgba(11,31,41,.10);

  --mtb-head: "Lexend Deca", sans-serif;
  --mtb-body: Poppins, sans-serif;

  --mt-max: 1200px;
  --mtb-pad: clamp(20px, 4.6vw, 68px);
  --mtb-ease: cubic-bezier(.22,.61,.36,1);

  font-family: var(--mtb-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--mtb-ink);
  -webkit-font-smoothing: antialiased;
}
.mtb-scope *,
.mtb-scope *::before,
.mtb-scope *::after{ box-sizing: border-box; }
.mtb-scope :focus-visible{ outline: 2px solid var(--mtb-surf); outline-offset: 4px; border-radius: 6px; }

.mtb-section{
  position: relative;
  padding: clamp(52px, 7vw, 100px) var(--mtb-pad);
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(47,163,165,.07) 0%, rgba(47,163,165,0) 55%),
    radial-gradient(90% 80% at 92% 100%, rgba(228,25,79,.06) 0%, rgba(228,25,79,0) 55%),
    linear-gradient(180deg, var(--mtb-wash) 0%, #FDFCFB 100%);
  overflow: hidden;
}
.mtb-section--overlap{
  margin-top: clamp(-140px, -9vw, -80px);
  padding-top: 0;
  background: linear-gradient(180deg, rgba(253,252,251,0) 0%, var(--mtb-wash) 34%, #FDFCFB 100%);
}
.mtb-section--overlap .mtb-rail{ padding-top: clamp(28px, 4vw, 46px); }

.mtb-section--dark{
  --mtb-ink: #FFFFFF;
  --mtb-ink-soft: rgba(255,255,255,.66);
  --mtb-paper: rgba(255,255,255,.05);
  --mtb-wash: rgba(255,255,255,.08);
  --mtb-line: rgba(255,255,255,.14);
  background:
    radial-gradient(110% 90% at 12% 0%, rgba(47,163,165,.14) 0%, rgba(47,163,165,0) 58%),
    linear-gradient(180deg, #06141A 0%, #0A2029 100%);
  color: #FFFFFF;
}

.mtb-rail{
  position: relative;
  z-index: 2;
  max-width: var(--mt-max, 1200px);
  margin: 0 auto;
}

.mtb-card{
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: 24px;
  background: var(--mtb-paper);
  box-shadow:
    0 1px 0 rgba(11,31,41,.04),
    0 18px 40px -28px rgba(11,31,41,.34),
    0 60px 90px -60px rgba(11,31,41,.5);
  overflow: hidden;
}
.mtb-section--dark .mtb-card{
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 90px -50px rgba(0,0,0,1);
}
.mtb-card::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mtb-crimson), #E9DFCD 48%, var(--mtb-surf));
  opacity: .9;
  z-index: 3;
}
.mtb-card::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .6s var(--mtb-ease);
  background: radial-gradient(340px 340px at var(--mtb-mx, 50%) var(--mtb-my, 50%), rgba(47,163,165,.10), rgba(47,163,165,0) 70%);
}
.mtb-card.is-lit::after{ opacity: 1; }

.mtb-item{
  position: relative;
  z-index: 1;
  display: block;
  padding: clamp(28px, 2.8vw, 42px) clamp(20px, 2.2vw, 34px);
  text-decoration: none;
  color: inherit;
  transition: background-color .5s var(--mtb-ease);
}
.mtb-item + .mtb-item{ box-shadow: inset 1px 0 0 var(--mtb-line); }
.mtb-item:hover{ background: rgba(246,244,240,.7); }
.mtb-section--dark .mtb-item:hover{ background: rgba(255,255,255,.05); }

.mtb-item::before{
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(to top, var(--mtb-crimson), rgba(228,25,79,0));
  transition: height .55s var(--mtb-ease);
}
.mtb-item:hover::before{ height: 100%; }
.mtb-item:first-child::before{ display: none; }

.mtb-icon{
  position: relative;
  width: 56px; height: 56px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(150deg, #FFFFFF 0%, var(--mtb-wash) 100%);
  box-shadow: inset 0 0 0 1px var(--mtb-line), 0 10px 20px -14px rgba(11,31,41,.45);
  color: var(--mtb-ink);
  transition: background .55s var(--mtb-ease), color .55s var(--mtb-ease), transform .55s var(--mtb-ease), box-shadow .55s var(--mtb-ease);
}
.mtb-section--dark .mtb-icon{
  background: linear-gradient(150deg, rgba(255,255,255,.1), rgba(255,255,255,.03));
}
.mtb-icon svg{ position: relative; z-index: 2; display: block; }
.mtb-icon::after{
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 22px;
  border: 1px dashed rgba(11,31,41,.16);
  opacity: 0;
  transform: rotate(0deg) scale(.94);
  transition: opacity .55s var(--mtb-ease), transform .8s var(--mtb-ease);
}
.mtb-item:hover .mtb-icon{
  background: linear-gradient(150deg, #123240 0%, #0B1F29 100%);
  color: #FFFFFF;
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1), 0 18px 32px -18px rgba(11,31,41,.75);
}
.mtb-item:hover .mtb-icon::after{
  opacity: 1;
  transform: rotate(45deg) scale(1);
  border-color: rgba(228,25,79,.35);
}

.mtb-icon svg path,
.mtb-icon svg circle,
.mtb-icon svg rect,
.mtb-icon svg line{
  stroke-dasharray: var(--mtb-len, 0);
  stroke-dashoffset: var(--mtb-len, 0);
}
.mtb-scope.is-in .mtb-icon svg path,
.mtb-scope.is-in .mtb-icon svg circle,
.mtb-scope.is-in .mtb-icon svg rect,
.mtb-scope.is-in .mtb-icon svg line{
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.1s var(--mtb-ease);
  transition-delay: var(--mtb-d, 0ms);
}

.mtb-title{
  margin: 0;
  font-family: var(--mtb-head);
  font-weight: 600;
  font-size: 19px;
  line-height: 28px;
  letter-spacing: -.005em;
  color: var(--mtb-ink);
}
.mtb-text{
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 26px;
  color: var(--mtb-ink-soft);
}
.mtb-more{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mtb-crimson);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .45s var(--mtb-ease), transform .45s var(--mtb-ease);
}
.mtb-item:hover .mtb-more{ opacity: 1; transform: none; }

.mtb-rise{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--mtb-ease), transform .95s var(--mtb-ease);
  transition-delay: var(--mtb-d, 0ms);
}
.mtb-scope.is-in .mtb-rise{ opacity: 1; transform: none; }

@media (max-width: 1080px){
  .mtb-card{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mtb-item:nth-child(odd)::before{ display: none; }
  .mtb-item:nth-child(2n+1){ box-shadow: none; }
  .mtb-item:nth-child(2n){ box-shadow: inset 1px 0 0 var(--mtb-line); }
  .mtb-item:nth-child(n+3){ box-shadow: inset 0 1px 0 var(--mtb-line); }
  .mtb-item:nth-child(4){ box-shadow: inset 1px 0 0 var(--mtb-line), inset 0 1px 0 var(--mtb-line); }
}
@media (max-width: 620px){
  .mtb-card{ grid-template-columns: 1fr; border-radius: 20px; }
  .mtb-item{ padding: 24px 22px; }
  .mtb-item + .mtb-item{ box-shadow: inset 0 1px 0 var(--mtb-line); }
  .mtb-item::before{
    left: 0; top: 0; bottom: auto;
    width: 0; height: 2px;
    background: linear-gradient(to right, var(--mtb-crimson), rgba(228,25,79,0));
    transition: width .55s var(--mtb-ease);
  }
  .mtb-item:hover::before{ height: 2px; width: 100%; }
  .mtb-icon{ width: 48px; height: 48px; margin-bottom: 14px; border-radius: 15px; }
  .mtb-section--overlap{ margin-top: -46px; }
}

/* ============================================================
   2. CATEGORY GALLERY
   ============================================================ */
.mtc-scope{
  --mtc-ink:     #06141A;
  --mtc-crimson: #E4194F;
  --mtc-surf:    #2FA3A5;
  --mtc-sand:    #E9DFCD;
  --mtc-white:   #FFFFFF;
  --mtc-mute:    rgba(255,255,255,.68);
  --mtc-line:    rgba(255,255,255,.14);

  --mtc-head: "Lexend Deca", sans-serif;
  --mtc-body: Poppins, sans-serif;

  --mtc-h2-size: 42px;
  --mtc-h2-line: 55px;

  --mt-max: 1200px;
  --mtc-pad: clamp(20px, 4.4vw, 68px);
  --mtc-ease: cubic-bezier(.16,.84,.34,1);

  font-family: var(--mtc-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--mtc-white);
  -webkit-font-smoothing: antialiased;
}
.mtc-scope *,
.mtc-scope *::before,
.mtc-scope *::after{ box-sizing: border-box; }
.mtc-scope :focus-visible{ outline: 2px solid var(--mtc-surf); outline-offset: 3px; }

.mtc-section{
  position: relative;
  padding: clamp(64px, 8vw, 120px) var(--mtc-pad);
  background:
    radial-gradient(72% 55% at 6% 4%, rgba(47,163,165,.18) 0%, rgba(47,163,165,0) 62%),
    radial-gradient(66% 58% at 98% 100%, rgba(228,25,79,.14) 0%, rgba(228,25,79,0) 60%),
    linear-gradient(180deg, #06141A 0%, #0A2029 50%, #06141A 100%);
  overflow: hidden;
}
.mtc-section::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/></filter><rect width='140' height='140' filter='url(%23n)' opacity='.3'/></svg>");
}

.mtc-rail{
  position: relative;
  z-index: 2;
  max-width: var(--mt-max, 1200px);
  margin: 0 auto;
}

.mtc-head{
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: end;
  gap: 30px;
  margin-bottom: clamp(34px, 4.2vw, 56px);
}
.mtc-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  font-weight: 500;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--mtc-sand);
}
.mtc-eyebrow::before{
  content: "";
  width: 0; height: 1px;
  background: var(--mtc-crimson);
  transition: width 1s var(--mtc-ease) .25s;
}
.mtc-scope.is-in .mtc-eyebrow::before{ width: 46px; }

.mtc-title{
  margin: 0;
  max-width: 19ch;
  font-family: var(--mtc-head);
  font-weight: 600;
  font-size: var(--mtc-h2-size);
  line-height: var(--mtc-h2-line);
  color: var(--mtc-white);
}
.mtc-sub{
  margin: 14px 0 0;
  max-width: 50ch;
  font-size: 16px;
  line-height: 28px;
  color: var(--mtc-mute);
}
.mtc-all{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid var(--mtc-line);
  color: var(--mtc-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color .4s var(--mtc-ease), color .4s var(--mtc-ease), border-color .4s var(--mtc-ease);
}
.mtc-all svg{ transition: transform .4s var(--mtc-ease); }
.mtc-all:hover{ background: var(--mtc-white); border-color: var(--mtc-white); color: var(--mtc-ink); }
.mtc-all:hover svg{ transform: translateX(5px); }

/* ---- shared panel ---- */
.mtc-gallery{ display: flex; gap: 12px; }
.mtc-panel{
  position: relative;
  min-width: 0;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #0A2029;
  box-shadow: 0 40px 80px -50px rgba(0,0,0,1);
}
.mtc-panel::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.10);
  pointer-events: none;
  transition: border-color .7s var(--mtc-ease);
}
.mtc-panel__img{
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s var(--mtc-ease), filter 1s var(--mtc-ease);
}
.mtc-panel__scrim{
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(4,14,19,.94) 0%, rgba(4,14,19,.42) 46%, rgba(4,14,19,.12) 100%);
  transition: background .8s var(--mtc-ease);
}
.mtc-panel__tag{
  position: absolute;
  top: 18px; left: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(6,20,26,.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 500;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mtc-sand);
  transition: background-color .6s var(--mtc-ease), color .6s var(--mtc-ease), border-color .6s var(--mtc-ease);
}
.mtc-panel__tag em{
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--mtc-surf);
  font-style: normal;
  transition: background-color .6s var(--mtc-ease);
}
.mtc-panel__body{
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 4;
  padding: 0 clamp(20px, 2vw, 32px) clamp(22px, 2.2vw, 30px);
}
.mtc-panel__name,
.mtc-panel__note{ display: block; }
.mtc-panel__kicker{
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mtc-sand);
}
.mtc-panel__name{
  margin: 0;
  font-family: var(--mtc-head);
  font-weight: 600;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.26;
  letter-spacing: -.01em;
  color: var(--mtc-white);
}
.mtc-panel__note{
  margin: 10px 0 0;
  max-width: 40ch;
  font-size: 14px;
  line-height: 24px;
  color: var(--mtc-mute);
}
.mtc-panel__go{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--mtc-white);
  color: var(--mtc-ink);
  font-weight: 600;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: background-color .4s var(--mtc-ease), color .4s var(--mtc-ease);
}
.mtc-panel__go svg{ transition: transform .4s var(--mtc-ease); }
.mtc-panel:hover .mtc-panel__go{ background: var(--mtc-crimson); color: #FFFFFF; }
.mtc-panel:hover .mtc-panel__go svg{ transform: translateX(4px); }

/* ---- LAYOUT A: expanding panels ---- */
.mtc-gallery--panels{ height: clamp(460px, 60vh, 640px); }
.mtc-gallery--panels .mtc-panel{
  flex: 1 1 0;
  transition: flex-grow 1s var(--mtc-ease), box-shadow .8s var(--mtc-ease);
}
.mtc-gallery--panels .mtc-panel.is-open{
  flex-grow: 2.9;
  box-shadow: 0 60px 110px -50px rgba(0,0,0,1);
}
.mtc-gallery--panels.has-open .mtc-panel{ flex-grow: .74; }
.mtc-gallery--panels.has-open .mtc-panel.is-open{ flex-grow: 2.9; }
.mtc-gallery--panels .mtc-panel.is-open::after{ border-color: rgba(233,223,205,.42); }

.mtc-gallery--panels .mtc-panel__img{ transform: scale(1.14); filter: saturate(.72) brightness(.62); }
.mtc-gallery--panels .mtc-panel.is-open .mtc-panel__img{ transform: scale(1); filter: saturate(1.04) brightness(.94); }
.mtc-gallery--panels .mtc-panel.is-open .mtc-panel__scrim{
  background:
    linear-gradient(to top, rgba(4,14,19,.95) 0%, rgba(4,14,19,.34) 52%, rgba(4,14,19,0) 100%),
    linear-gradient(to top, rgba(228,25,79,.20) 0%, rgba(228,25,79,0) 44%);
}
.mtc-gallery--panels .mtc-panel.is-open .mtc-panel__tag{
  background: var(--mtc-crimson);
  border-color: var(--mtc-crimson);
  color: #FFFFFF;
}
.mtc-gallery--panels .mtc-panel.is-open .mtc-panel__tag em{ background: #FFFFFF; }

.mtc-panel__spine{
  position: absolute;
  inset: 0;
  z-index: 3;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 28px;
  opacity: 1;
  transition: opacity .5s var(--mtc-ease);
}
.mtc-gallery--panels .mtc-panel__spine{ display: flex; }
.mtc-gallery--panels .mtc-panel.is-open .mtc-panel__spine{ opacity: 0; transition-duration: .3s; }
.mtc-panel__spine i{
  display: block;
  width: 1px;
  height: 44px;
  margin-bottom: 16px;
  background: linear-gradient(to bottom, rgba(233,223,205,0), var(--mtc-sand));
}
.mtc-panel__spine span{
  font-family: var(--mtc-head);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: .04em;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--mtc-white);
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
}

.mtc-gallery--panels .mtc-panel__body{
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity .6s var(--mtc-ease), transform .7s var(--mtc-ease);
}
.mtc-gallery--panels .mtc-panel.is-open .mtc-panel__body{
  opacity: 1;
  transform: none;
  transition-delay: .18s;
  pointer-events: auto;
}
.mtc-gallery--panels .mtc-panel__name{ white-space: nowrap; }

.mtc-panel__timer{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 6;
  height: 2px;
  background: rgba(255,255,255,.14);
  opacity: 0;
  transition: opacity .4s var(--mtc-ease);
}
.mtc-gallery.is-cycling .mtc-panel.is-open .mtc-panel__timer{ opacity: 1; }
.mtc-panel__timer i{
  display: block;
  height: 100%;
  width: 100%;
  background: var(--mtc-sand);
  transform: scaleX(0);
  transform-origin: left;
}
.mtc-gallery.is-cycling .mtc-panel.is-open .mtc-panel__timer i{
  animation: mtc-fill 5200ms linear forwards;
}
@keyframes mtc-fill{
  from{ transform: scaleX(0); }
  to  { transform: scaleX(1); }
}

.mtc-hint{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 0;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  transition: opacity .5s var(--mtc-ease);
}
.mtc-hint i{ width: 22px; height: 1px; background: rgba(255,255,255,.3); }
.mtc-scope.is-touched .mtc-hint{ opacity: 0; }

/* ---- LAYOUT B: four equal cards ---- */
.mtc-gallery--grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 22px);
  height: auto;
}
.mtc-gallery--grid .mtc-panel{
  aspect-ratio: 3 / 4;
  transition: transform .6s var(--mtc-ease), box-shadow .6s var(--mtc-ease);
}
.mtc-gallery--grid .mtc-panel__img{ transform: scale(1.03); filter: saturate(.95) brightness(.86); }
.mtc-gallery--grid .mtc-panel:hover{ transform: translateY(-8px); box-shadow: 0 54px 96px -46px rgba(0,0,0,1); }
.mtc-gallery--grid .mtc-panel:hover::after{ border-color: rgba(233,223,205,.5); }
.mtc-gallery--grid .mtc-panel:hover .mtc-panel__img{ transform: scale(1.11); filter: saturate(1.06) brightness(.96); }
.mtc-gallery--grid .mtc-panel:hover .mtc-panel__scrim{
  background:
    linear-gradient(to top, rgba(4,14,19,.96) 0%, rgba(4,14,19,.5) 48%, rgba(4,14,19,.06) 100%),
    linear-gradient(to top, rgba(228,25,79,.20) 0%, rgba(228,25,79,0) 46%);
}
.mtc-gallery--grid .mtc-panel__timer,
.mtc-gallery--grid .mtc-panel__spine{ display: none; }
.mtc-gallery--grid .mtc-panel__go{
  margin-top: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s var(--mtc-ease), transform .5s var(--mtc-ease), background-color .4s var(--mtc-ease), color .4s var(--mtc-ease);
}
.mtc-gallery--grid .mtc-panel:hover .mtc-panel__go{ opacity: 1; transform: none; }
@media (hover: none){
  .mtc-gallery--grid .mtc-panel__go{ opacity: 1; transform: none; }
}

/* ---- reveal ---- */
.mtc-rise{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--mtc-ease), transform .95s var(--mtc-ease);
  transition-delay: var(--mtc-d, 0ms);
}
.mtc-scope.is-in .mtc-rise{ opacity: 1; transform: none; }

.mtc-panel{
  opacity: 0;
  clip-path: inset(0 0 100% 0 round 20px);
}
.mtc-scope.is-in .mtc-panel{
  opacity: 1;
  clip-path: inset(0 0 0 0 round 20px);
  transition: flex-grow 1s var(--mtc-ease),
              transform .6s var(--mtc-ease),
              box-shadow .8s var(--mtc-ease),
              opacity .9s var(--mtc-ease) var(--mtc-d, 0ms),
              clip-path 1.05s var(--mtc-ease) var(--mtc-d, 0ms);
}

@media (max-width: 1180px){
  .mtc-gallery--grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 1100px){
  .mtc-head{ grid-template-columns: 1fr; align-items: start; }
  .mtc-all{ justify-self: start; }
  .mtc-gallery--panels{ height: clamp(410px, 52vh, 540px); }
  .mtc-gallery--panels .mtc-panel.is-open,
  .mtc-gallery--panels.has-open .mtc-panel.is-open{ flex-grow: 3.4; }
  .mtc-gallery--panels.has-open .mtc-panel{ flex-grow: .6; }
}
@media (max-width: 820px){
  .mtc-scope{ --mtc-h2-size: 32px; --mtc-h2-line: 42px; }
  .mtc-gallery--panels{
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    height: auto;
  }
  .mtc-gallery--panels .mtc-panel,
  .mtc-gallery--panels.has-open .mtc-panel,
  .mtc-gallery--panels .mtc-panel.is-open,
  .mtc-gallery--panels.has-open .mtc-panel.is-open{
    flex: none;
    height: 330px;
    flex-grow: 0;
  }
  .mtc-gallery--panels .mtc-panel__spine{ display: none; }
  .mtc-gallery--panels .mtc-panel__body{ opacity: 1; transform: none; pointer-events: auto; }
  .mtc-gallery--panels .mtc-panel__img{ transform: scale(1); filter: saturate(1) brightness(.9); }
  .mtc-gallery--panels .mtc-panel::after{ border-color: rgba(233,223,205,.3); }
  .mtc-gallery--panels .mtc-panel__tag{ background: var(--mtc-crimson); border-color: var(--mtc-crimson); color: #FFF; }
  .mtc-gallery--panels .mtc-panel__name{ white-space: normal; }
  .mtc-panel__timer{ display: none; }
  .mtc-hint{ display: none; }
}
@media (max-width: 620px){
  .mtc-gallery--grid{ grid-template-columns: 1fr; }
  .mtc-gallery--grid .mtc-panel{ aspect-ratio: 4 / 3; }
  .mtc-gallery--panels .mtc-panel,
  .mtc-gallery--panels .mtc-panel.is-open{ height: 290px; }
}

/* ============================================================
   3. VIDEO SECTION
   ============================================================ */
.mtv-scope{
  --mtv-ink:     #06141A;
  --mtv-crimson: #E4194F;
  --mtv-crimson-lo: #B50F3B;
  --mtv-surf:    #2FA3A5;
  --mtv-sand:    #E9DFCD;
  --mtv-fg:      #FFFFFF;
  --mtv-mute:    rgba(255,255,255,.74);
  --mtv-line:    rgba(255,255,255,.16);

  --mtv-head: "Lexend Deca", sans-serif;
  --mtv-body: Poppins, sans-serif;

  --mtv-h2-size: 42px;
  --mtv-h2-line: 55px;

  --mt-max: 1200px;
  --mtv-pad: clamp(20px, 4.4vw, 68px);
  --mtv-ease: cubic-bezier(.16,.84,.34,1);

  font-family: var(--mtv-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--mtv-fg);
  -webkit-font-smoothing: antialiased;
}
.mtv-scope *,
.mtv-scope *::before,
.mtv-scope *::after{ box-sizing: border-box; }
.mtv-scope :focus-visible{ outline: 2px solid var(--mtv-surf); outline-offset: 3px; border-radius: 6px; }

/* light scheme for the split layout */
.mtv-scope--light{
  --mtv-fg: #0B1F29;
  --mtv-mute: #5A6B73;
  --mtv-line: rgba(11,31,41,.14);
  color: #0B1F29;
}

.mtv-rail{
  position: relative;
  z-index: 3;
  max-width: var(--mt-max, 1200px);
  margin: 0 auto;
}

/* ---- shared video frame ----
   The video is visible from the start; the poster sits on top of
   it and fades away once playback begins. That way a browser that
   refuses autoplay still shows the first frame instead of an
   empty coloured box. */
.mtv-stage__poster{
  z-index: 1;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transition: opacity 1.4s var(--mtv-ease);
}
.mtv-scope.is-playing .mtv-stage__poster{ opacity: 0; }
.mtv-scope.is-playing .mtv-frame .mtv-stage__poster{ opacity: 0; }

/* ============================================================
   3A. FULL-BLEED LAYOUT
   ============================================================ */
.mtv-section{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(640px, 88vh, 920px);
  background: var(--mtv-ink);
  overflow: hidden;
  isolation: isolate;
}
.mtv-stage{
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #06141A;
}
.mtv-stage video,
.mtv-section .mtv-stage__poster{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mtv-section .mtv-stage__poster{ transform: scale(1.04); }
.mtv-stage video{ z-index: 0; opacity: 1; }

.mtv-scrim{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(96deg, rgba(6,20,26,.94) 0%, rgba(6,20,26,.80) 34%, rgba(6,20,26,.22) 64%, rgba(6,20,26,.50) 100%),
    linear-gradient(to top, rgba(6,20,26,.96) 0%, rgba(6,20,26,.10) 46%);
}
.mtv-glow{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(56% 46% at 78% 24%, rgba(47,163,165,.20), rgba(47,163,165,0) 70%);
  animation: mtv-breathe 17s ease-in-out infinite;
}
@keyframes mtv-breathe{
  0%,100%{ opacity: .5; transform: translate3d(0,0,0) scale(1); }
  50%    { opacity: 1;  transform: translate3d(-2%,1.5%,0) scale(1.08); }
}
.mtv-grain{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .42;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/></filter><rect width='140' height='140' filter='url(%23n)' opacity='.32'/></svg>");
}

.mtv-inner{
  position: relative;
  z-index: 3;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-end;
  width: 100%;
  max-width: var(--mt-max, 1200px);
  margin: 0 auto;
  padding: clamp(100px, 12vh, 160px) var(--mtv-pad) clamp(30px, 3.6vh, 50px);
}
.mtv-panel{
  position: relative;
  width: 100%;
  max-width: 660px;
  padding: clamp(28px, 2.8vw, 44px);
  border-radius: 24px;
  background: rgba(6,20,26,.52);
  -webkit-backdrop-filter: blur(26px) saturate(135%);
  backdrop-filter: blur(26px) saturate(135%);
  box-shadow: 0 50px 100px -50px rgba(0,0,0,1);
}
.mtv-panel::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(150deg, rgba(228,25,79,.6), rgba(255,255,255,.14) 42%, rgba(47,163,165,.55));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

/* ============================================================
   3B. SPLIT LAYOUT — text + socials left, film right
   ============================================================ */
.mtv-split{
  position: relative;
  padding: clamp(64px, 8vw, 120px) var(--mtv-pad);
  background: linear-gradient(180deg, #06141A 0%, #0A2029 100%);
  overflow: hidden;
}
.mtv-scope--light .mtv-split{
  background: linear-gradient(180deg, #FDFCFB 0%, #F6F4F0 100%);
}
.mtv-split__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(34px, 5vw, 84px);
  align-items: center;
}
.mtv-split__copy{ min-width: 0; }

.mtv-frame{
  position: relative;
  min-width: 0;
}
.mtv-frame__box{
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3 / 4;
  background: #0A2029;
  box-shadow: 0 50px 100px -55px rgba(0,0,0,.9);
}
.mtv-frame video,
.mtv-frame .mtv-stage__poster{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mtv-frame video{ z-index: 0; opacity: 1; }
.mtv-frame__caption{
  display: block;
  margin-top: 16px;
  font-weight: 500;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mtv-mute);
}
/* thin brand rule that draws in beside the caption */
.mtv-frame__caption::before{
  content: "";
  display: inline-block;
  width: 0; height: 1px;
  margin-right: 12px;
  vertical-align: middle;
  background: var(--mtv-crimson);
  transition: width .9s var(--mtv-ease) .4s;
}
.mtv-scope.is-in .mtv-frame__caption::before{ width: 34px; }

/* ============================================================
   SHARED TEXT
   ============================================================ */
.mtv-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-weight: 500;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--mtv-sand);
}
.mtv-scope--light .mtv-eyebrow{ color: #8A9AA2; }
.mtv-eyebrow::before{
  content: "";
  width: 0; height: 1px;
  background: var(--mtv-crimson);
  transition: width 1s var(--mtv-ease) .3s;
}
.mtv-scope.is-in .mtv-eyebrow::before{ width: 44px; }

.mtv-title{
  margin: 0;
  max-width: 16ch;
  font-family: var(--mtv-head);
  font-weight: 600;
  font-size: var(--mtv-h2-size);
  line-height: var(--mtv-h2-line);
  color: var(--mtv-fg);
}
.mtv-copy{
  margin: 20px 0 0;
  max-width: 58ch;
  font-size: 16px;
  line-height: 28px;
  color: var(--mtv-mute);
}
.mtv-copy strong,
.mtv-copy b{
  font-family: var(--mtv-head);
  font-weight: 600;
  color: var(--mtv-fg);
}

.mtv-actions{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.mtv-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 19px 34px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mtv-crimson) 0%, var(--mtv-crimson-lo) 100%);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 12.5px;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 16px 44px -14px rgba(228,25,79,.9);
  transition: box-shadow .45s var(--mtv-ease);
}
.mtv-btn span{ position: relative; z-index: 1; }
.mtv-btn svg{ position: relative; z-index: 1; transition: transform .4s var(--mtv-ease); }
.mtv-btn::after{
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.36), transparent);
  transform: skewX(-18deg);
  transition: left .8s var(--mtv-ease);
}
.mtv-btn:hover{ box-shadow: 0 22px 54px -14px rgba(228,25,79,1); }
.mtv-btn:hover::after{ left: 130%; }
.mtv-btn:hover svg{ transform: translateX(5px); }

.mtv-ghost{
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 19px 32px;
  border-radius: 999px;
  border: 1px solid var(--mtv-line);
  color: var(--mtv-fg);
  text-decoration: none;
  font-weight: 500;
  font-size: 12.5px;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: background-color .4s var(--mtv-ease), color .4s var(--mtv-ease), border-color .4s var(--mtv-ease);
}
.mtv-ghost:hover{ background: var(--mtv-fg); border-color: var(--mtv-fg); color: #FFFFFF; }
.mtv-scope--light .mtv-ghost:hover{ color: #FFFFFF; }

/* ---- brand + social ---- */
.mtv-strip{
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--mt-max, 1200px);
  margin: 0 auto;
  padding: clamp(24px, 2.6vw, 34px) var(--mtv-pad) clamp(30px, 3.4vw, 46px);
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: clamp(18px, 2.6vw, 40px);
}
.mtv-strip::before{
  content: "";
  position: absolute;
  left: var(--mtv-pad); right: var(--mtv-pad);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), var(--mtv-line) 12%, var(--mtv-line) 88%, rgba(255,255,255,0));
}
.mtv-brand__name{
  display: block;
  font-family: var(--mtv-head);
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: var(--mtv-fg);
}
.mtv-brand__line{
  display: block;
  margin-top: 4px;
  font-size: 14px;
  line-height: 24px;
  color: var(--mtv-mute);
}
.mtv-strip__rule{
  height: 1px;
  background: linear-gradient(90deg, var(--mtv-line), rgba(255,255,255,0));
}

.mtv-social{
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mtv-social li{ margin: 0; list-style: none; }
.mtv-social span{
  margin-right: 6px;
  font-size: 11px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mtv-mute);
  white-space: nowrap;
}
.mtv-social a{
  position: relative;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--mtv-line);
  color: var(--mtv-fg);
  background: rgba(255,255,255,.04);
  transition: background-color .45s var(--mtv-ease), color .45s var(--mtv-ease),
              border-color .45s var(--mtv-ease), transform .45s var(--mtv-ease);
}
.mtv-scope--light .mtv-social a{ background: rgba(11,31,41,.03); }
.mtv-social a svg{ position: relative; z-index: 1; }
.mtv-social a:hover{
  background: var(--mtv-fg);
  border-color: var(--mtv-fg);
  color: #FFFFFF;
  transform: translateY(-3px);
}
.mtv-scope--light .mtv-social a:hover{ color: #FFFFFF; }
.mtv-social a::after{
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px dashed rgba(228,25,79,.3);
  opacity: 0;
  transform: scale(.9) rotate(0deg);
  transition: opacity .45s var(--mtv-ease), transform .7s var(--mtv-ease);
}
.mtv-social a:hover::after{ opacity: 1; transform: scale(1) rotate(40deg); }

/* social row inside the split layout sits inline, no divider */
.mtv-split .mtv-social{ margin-top: 34px; }

.mtv-rise{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .95s var(--mtv-ease), transform 1s var(--mtv-ease);
  transition-delay: var(--mtv-d, 0ms);
}
.mtv-scope.is-in .mtv-rise{ opacity: 1; transform: none; }

@media (max-width: 1000px){
  .mtv-split__grid{ grid-template-columns: 1fr; gap: 34px; }
  .mtv-frame__box{ aspect-ratio: 16 / 10; }
  .mtv-panel{ max-width: none; }
}
@media (max-width: 820px){
  .mtv-strip{ grid-template-columns: 1fr; justify-items: start; gap: 20px; }
  .mtv-strip__rule{ display: none; }
}
@media (max-width: 620px){
  .mtv-scope{ --mtv-h2-size: 32px; --mtv-h2-line: 42px; }
  .mtv-section{ min-height: 0; }
  .mtv-inner{ padding-top: clamp(80px, 24vh, 140px); }
  .mtv-title{ max-width: none; }
  .mtv-btn, .mtv-ghost{ width: 100%; justify-content: center; }
  .mtv-scrim{
    background: linear-gradient(180deg, rgba(6,20,26,.72) 0%, rgba(6,20,26,.86) 34%, rgba(6,20,26,.97) 100%);
  }
  .mtv-social a{ width: 42px; height: 42px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce){
  .mtb-scope *, .mtb-scope *::before, .mtb-scope *::after,
  .mtc-scope *, .mtc-scope *::before, .mtc-scope *::after,
  .mtv-scope *, .mtv-scope *::before, .mtv-scope *::after{
    animation: none !important;
    transition-duration: .001ms !important;
  }
  .mtb-rise, .mtc-rise, .mtv-rise{ opacity: 1; transform: none; }
  .mtc-panel{ opacity: 1; clip-path: none; }
  .mtb-icon svg path, .mtb-icon svg circle,
  .mtb-icon svg rect, .mtb-icon svg line{ stroke-dashoffset: 0; }
  .mtv-stage__poster{ opacity: 1 !important; }
  .mtv-stage__poster{ opacity: 1 !important; }
}

/* ============================================================
   4. AMENITIES
   V1 — tile grid with a traced conic border
   V2 — two ribbons drifting in opposite directions
   ============================================================ */
.mta-scope{
  --mta-ink:      #0B1F29;
  --mta-soft:     #5A6B73;
  --mta-crimson:  #E4194F;
  --mta-surf:     #2FA3A5;
  --mta-sand:     #E9DFCD;
  --mta-tile:     #FFFFFF;
  --mta-face:     #FFFFFF;
  --mta-wash:     #F6F4F0;
  --mta-line:     rgba(11,31,41,.11);
  --mta-shadow:   0 18px 40px -30px rgba(11,31,41,.5);

  --mta-head: "Lexend Deca", sans-serif;
  --mta-body: Poppins, sans-serif;

  --mta-h2-size: 42px;
  --mta-h2-line: 55px;

  --mt-max: 1200px;
  --mta-pad: clamp(20px, 4.4vw, 68px);
  --mta-ease: cubic-bezier(.2,.75,.3,1);
  --mta-speed: 46s;

  font-family: var(--mta-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--mta-ink);
  -webkit-font-smoothing: antialiased;
}
.mta-scope *,
.mta-scope *::before,
.mta-scope *::after{ box-sizing: border-box; }
.mta-scope :focus-visible{ outline: 2px solid var(--mta-surf); outline-offset: 4px; border-radius: 8px; }

.mta-scope--dark{
  --mta-ink: #FFFFFF;
  --mta-soft: rgba(255,255,255,.62);
  --mta-tile: rgba(255,255,255,.04);
  --mta-face: #0C222B;
  --mta-wash: rgba(255,255,255,.07);
  --mta-line: rgba(255,255,255,.12);
  --mta-shadow: 0 30px 60px -40px rgba(0,0,0,1);
}

.mta-section{
  position: relative;
  padding: clamp(64px, 8vw, 118px) var(--mta-pad);
  background:
    radial-gradient(110% 80% at 10% 0%, rgba(47,163,165,.08) 0%, rgba(47,163,165,0) 58%),
    radial-gradient(90% 80% at 94% 100%, rgba(228,25,79,.07) 0%, rgba(228,25,79,0) 58%),
    linear-gradient(180deg, #FDFCFB 0%, #F6F4F0 100%);
  overflow: hidden;
}
.mta-scope--dark .mta-section{
  background:
    radial-gradient(90% 70% at 8% 0%, rgba(47,163,165,.16) 0%, rgba(47,163,165,0) 60%),
    radial-gradient(80% 70% at 96% 100%, rgba(228,25,79,.13) 0%, rgba(228,25,79,0) 58%),
    linear-gradient(180deg, #06141A 0%, #0A2029 100%);
}
/* the ribbon stays on the rail like every other section — the rows
   scroll inside 1200px instead of bleeding to the viewport edge */
.mta-section--ribbon .mta-ribbon{
  max-width: var(--mt-max, 1200px);
  margin: 0 auto;
}

.mta-rail{
  position: relative;
  z-index: 2;
  max-width: var(--mt-max, 1200px);
  margin: 0 auto;
}

/* ---- header ---- */
.mta-head{
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: end;
  gap: 28px;
  margin-bottom: clamp(34px, 4vw, 54px);
}
.mta-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  font-weight: 500;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--mta-soft);
}
.mta-eyebrow::before{
  content: "";
  width: 0; height: 1px;
  background: var(--mta-crimson);
  transition: width 1s var(--mta-ease) .25s;
}
.mta-scope.is-in .mta-eyebrow::before{ width: 46px; }

.mta-title{
  margin: 0;
  max-width: 22ch;
  font-family: var(--mta-head);
  font-weight: 600;
  font-size: var(--mta-h2-size);
  line-height: var(--mta-h2-line);
  color: var(--mta-ink);
}
.mta-count{ text-align: right; white-space: nowrap; }
.mta-count b{
  display: block;
  font-family: var(--mta-head);
  font-weight: 600;
  font-size: 46px;
  line-height: 1;
  color: var(--mta-ink);
  font-variant-numeric: tabular-nums;
}
.mta-count span{
  display: block;
  margin-top: 8px;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mta-soft);
}

/* ---- shared icon well ---- */
.mta-ic{
  position: relative;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, #FFFFFF 0%, var(--mta-wash) 100%);
  box-shadow: inset 0 0 0 1px var(--mta-line);
  color: var(--mta-ink);
  transition: background .55s var(--mta-ease), color .55s var(--mta-ease),
              transform .55s var(--mta-ease), box-shadow .55s var(--mta-ease);
}
.mta-scope--dark .mta-ic{
  background: linear-gradient(150deg, rgba(255,255,255,.1), rgba(255,255,255,.03));
}
.mta-ic svg{ display: block; }

.mta-ic svg path,
.mta-ic svg circle,
.mta-ic svg rect,
.mta-ic svg line{
  stroke-dasharray: var(--mta-len, 0);
  stroke-dashoffset: var(--mta-len, 0);
}
.mta-scope.is-in .mta-ic svg path,
.mta-scope.is-in .mta-ic svg circle,
.mta-scope.is-in .mta-ic svg rect,
.mta-scope.is-in .mta-ic svg line{
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.15s var(--mta-ease);
  transition-delay: var(--mta-d, 0ms);
}

.mta-name{
  display: block;
  margin: 0;
  font-family: var(--mta-head);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -.005em;
  color: var(--mta-ink);
}
.mta-note{
  display: block;
  margin: 5px 0 0;
  font-size: 13px;
  line-height: 22px;
  color: var(--mta-soft);
}

/* the traced conic ring, shared by tiles and pills */
@keyframes mta-spin{
  to{ transform: translate(-50%,-50%) rotate(360deg); }
}

/* ============================================================
   V1 — TILE GRID
   ============================================================ */
.mta-grid{
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(184px, 1fr));
  gap: clamp(12px, 1.2vw, 18px);
}
.mta-grid::after{
  content: "";
  position: absolute;
  inset: -40px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(104deg, rgba(255,255,255,0) 42%, rgba(255,255,255,.55) 50%, rgba(255,255,255,0) 58%);
  transform: translateX(-120%);
  animation: mta-sweep 9s cubic-bezier(.5,0,.5,1) 1.6s infinite;
  mix-blend-mode: overlay;
}
.mta-scope--dark .mta-grid::after{
  background: linear-gradient(104deg, rgba(233,223,205,0) 42%, rgba(233,223,205,.22) 50%, rgba(233,223,205,0) 58%);
}
@keyframes mta-sweep{
  0%   { transform: translateX(-120%); }
  55%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

.mta-tile{
  position: relative;
  z-index: 1;
  display: block;
  padding: 2px;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--mta-shadow);
  opacity: 0;
  transform: translateY(28px) scale(.97);
}
.mta-tile::before{
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 190%;
  padding-bottom: 190%;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(228,25,79,0) 0deg,
    var(--mta-crimson) 40deg,
    var(--mta-sand) 90deg,
    var(--mta-surf) 140deg,
    rgba(47,163,165,0) 200deg,
    rgba(228,25,79,0) 360deg);
  transform: translate(-50%,-50%) rotate(0deg);
  opacity: 0;
  transition: opacity .5s var(--mta-ease);
  animation: mta-spin 4.5s linear infinite;
  animation-play-state: paused;
}
.mta-tile:hover::before{ opacity: 1; animation-play-state: running; }

.mta-tile__face{
  position: relative;
  z-index: 2;
  display: block;
  height: 100%;
  padding: clamp(22px, 2.2vw, 30px) clamp(18px, 1.8vw, 24px);
  border-radius: 16px;
  background: var(--mta-tile);
  border: 1px solid var(--mta-line);
  transition: background-color .5s var(--mta-ease), border-color .5s var(--mta-ease);
}
.mta-scope--dark .mta-tile__face{
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.mta-tile:hover .mta-tile__face{ border-color: transparent; }

.mta-scope.is-in .mta-tile{
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity .8s var(--mta-ease) var(--mta-d, 0ms),
              transform .85s var(--mta-ease) var(--mta-d, 0ms),
              box-shadow .55s var(--mta-ease);
}
.mta-scope.is-in .mta-tile:hover{
  transform: translateY(-6px) scale(1);
  transition-delay: 0ms;
  box-shadow: 0 34px 60px -34px rgba(11,31,41,.6);
}
.mta-scope--dark.is-in .mta-tile:hover{ box-shadow: 0 44px 80px -40px rgba(0,0,0,1); }

.mta-tile .mta-ic{
  width: 52px; height: 52px;
  margin-bottom: 18px;
  border-radius: 15px;
}
.mta-tile:hover .mta-ic{
  background: linear-gradient(150deg, #123240 0%, #0B1F29 100%);
  color: #FFFFFF;
  transform: translateY(-3px) rotate(-4deg);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 16px 26px -16px rgba(11,31,41,.8);
}
.mta-scope--dark .mta-tile:hover .mta-ic{
  background: linear-gradient(150deg, var(--mta-sand), #CBBFA6);
  color: #0B1F29;
}

.mta-rule{
  display: block;
  height: 1px;
  margin-top: 16px;
  background: var(--mta-line);
  position: relative;
  overflow: hidden;
}
.mta-rule::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--mta-crimson), var(--mta-surf));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--mta-ease);
}
.mta-tile:hover .mta-rule::after{ transform: scaleX(1); }

/* ============================================================
   V2 — RIBBON
   ============================================================ */
.mta-ribbon{
  position: relative;
  display: grid;
  gap: clamp(12px, 1.2vw, 18px);
}
.mta-row{
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--mta-ease) var(--mta-d, 0ms), transform 1.05s var(--mta-ease) var(--mta-d, 0ms);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.mta-scope.is-in .mta-row{ opacity: 1; transform: none; }

.mta-track{
  display: flex;
  align-items: stretch;
  gap: clamp(12px, 1.2vw, 18px);
  width: max-content;
  animation: mta-slide var(--mta-speed) linear infinite;
  animation-play-state: paused;
  will-change: transform;
}
.mta-scope.is-in .mta-track{ animation-play-state: running; }
.mta-row--back .mta-track{ animation-direction: reverse; }
.mta-row:hover .mta-track,
.mta-row:focus-within .mta-track{ animation-play-state: paused; }

@keyframes mta-slide{
  from{ transform: translate3d(0,0,0); }
  to  { transform: translate3d(-50%,0,0); }
}

.mta-pill{
  position: relative;
  flex: none;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 26px 15px 15px;
  border-radius: 999px;
  border: 1px solid var(--mta-line);
  background: var(--mta-tile);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 14px 30px -26px rgba(11,31,41,.7);
  transition: transform .5s var(--mta-ease), border-color .5s var(--mta-ease),
              box-shadow .5s var(--mta-ease);
}
.mta-scope--dark .mta-pill{
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.mta-pill::before{
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 160%;
  padding-bottom: 160%;
  border-radius: 50%;
  z-index: -2;
  background: conic-gradient(
    from 0deg,
    rgba(228,25,79,0) 0deg,
    var(--mta-crimson) 40deg,
    var(--mta-sand) 92deg,
    var(--mta-surf) 145deg,
    rgba(47,163,165,0) 205deg,
    rgba(228,25,79,0) 360deg);
  transform: translate(-50%,-50%) rotate(0deg);
  opacity: 0;
  transition: opacity .5s var(--mta-ease);
  animation: mta-spin 4.5s linear infinite;
  animation-play-state: paused;
}
.mta-pill::after{
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 999px;
  background: var(--mta-face);
}
.mta-pill:hover{
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 26px 44px -26px rgba(11,31,41,.7);
}
.mta-scope--dark .mta-pill:hover{ box-shadow: 0 30px 56px -28px rgba(0,0,0,1); }
.mta-pill:hover::before{ opacity: 1; animation-play-state: running; }

.mta-pill .mta-ic{
  width: 46px; height: 46px;
  flex: none;
  border-radius: 50%;
}
.mta-pill:hover .mta-ic{
  background: linear-gradient(150deg, #123240 0%, #0B1F29 100%);
  color: #FFFFFF;
  transform: rotate(-6deg);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14), 0 12px 22px -14px rgba(11,31,41,.9);
}
.mta-scope--dark .mta-pill:hover .mta-ic{
  background: linear-gradient(150deg, var(--mta-sand), #CBBFA6);
  color: #0B1F29;
}
.mta-pill .mta-txt{ min-width: 0; }
.mta-pill .mta-name{ font-size: 15.5px; line-height: 22px; white-space: nowrap; }
.mta-pill .mta-note{ margin-top: 2px; font-size: 12.5px; line-height: 18px; white-space: nowrap; }

/* ---- reveal for the header bits ---- */
.mta-rise{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--mta-ease), transform .95s var(--mta-ease);
  transition-delay: var(--mta-d, 0ms);
}
.mta-scope.is-in .mta-rise{ opacity: 1; transform: none; }

/* ---- responsive ---- */
@media (max-width: 900px){
  .mta-grid{ grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
  .mta-head{ grid-template-columns: 1fr; align-items: start; }
  .mta-count{ text-align: left; }
  .mta-count b{ font-size: 38px; }
}
@media (max-width: 620px){
  .mta-scope{ --mta-h2-size: 32px; --mta-h2-line: 42px; --mta-speed: 34s; }
  .mta-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .mta-tile__face{ padding: 20px 16px; }
  .mta-tile .mta-ic{ width: 46px; height: 46px; margin-bottom: 14px; border-radius: 13px; }
  .mta-name{ font-size: 15px; line-height: 22px; }
  .mta-grid::after{ display: none; }
  .mta-pill{ padding: 12px 22px 12px 12px; gap: 12px; }
  .mta-pill .mta-ic{ width: 40px; height: 40px; }
  .mta-pill .mta-name{ font-size: 14.5px; }
  .mta-pill .mta-note{ display: none; }
}

@media (prefers-reduced-motion: reduce){
  .mta-scope *,
  .mta-scope *::before,
  .mta-scope *::after{
    animation: none !important;
    transition-duration: .001ms !important;
  }
  .mta-rise, .mta-row{ opacity: 1; transform: none; }
  .mta-tile{ opacity: 1; transform: none; }
  .mta-ic svg path, .mta-ic svg circle,
  .mta-ic svg rect, .mta-ic svg line{ stroke-dashoffset: 0; }
  .mta-row{
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* ============================================================
   5. GUEST REVIEWS
   Carousel (3 up, one card per step) or masonry wall.
   Each card sits on its own soft tint.
   ============================================================ */
.mtq-scope{
  --mtq-ink:     #0B1F29;
  --mtq-soft:    #5A6B73;
  --mtq-crimson: #E4194F;
  --mtq-surf:    #2FA3A5;
  --mtq-gold:    #E0A93B;
  --mtq-sand:    #E9DFCD;
  --mtq-line:    rgba(11,31,41,.10);

  --mtq-t1: #FBF6EF;
  --mtq-t2: #F1F7F6;
  --mtq-t3: #FCF4F5;
  --mtq-t4: #F4F7F1;
  --mtq-t5: #F2F6FA;
  --mtq-t6: #F9F5EE;

  --mtq-head: "Lexend Deca", sans-serif;
  --mtq-body: Poppins, sans-serif;

  --mtq-h2-size: 42px;
  --mtq-h2-line: 55px;

  --mt-max: 1200px;
  --mtq-pad: clamp(20px, 4.4vw, 68px);
  --mtq-gap: clamp(14px, 1.5vw, 22px);
  --mtq-ease: cubic-bezier(.22,.72,.24,1);

  font-family: var(--mtq-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--mtq-ink);
  -webkit-font-smoothing: antialiased;
}
.mtq-scope *,
.mtq-scope *::before,
.mtq-scope *::after{ box-sizing: border-box; }
.mtq-scope :focus-visible{ outline: 2px solid var(--mtq-surf); outline-offset: 4px; border-radius: 8px; }

.mtq-scope--dark{
  --mtq-ink: #FFFFFF;
  --mtq-soft: rgba(255,255,255,.64);
  --mtq-line: rgba(255,255,255,.13);
  --mtq-t1: rgba(233,223,205,.07);
  --mtq-t2: rgba(47,163,165,.09);
  --mtq-t3: rgba(228,25,79,.07);
  --mtq-t4: rgba(255,255,255,.05);
  --mtq-t5: rgba(120,180,220,.08);
  --mtq-t6: rgba(233,223,205,.05);
}

.mtq-section{
  position: relative;
  padding: clamp(64px, 8vw, 120px) var(--mtq-pad);
  background: linear-gradient(180deg, #FFFFFF 0%, #FCFBF9 100%);
  overflow: hidden;
}
.mtq-scope--dark .mtq-section{
  background:
    radial-gradient(90% 70% at 8% 0%, rgba(47,163,165,.14) 0%, rgba(47,163,165,0) 60%),
    linear-gradient(180deg, #06141A 0%, #0A2029 100%);
}

.mtq-rail{
  position: relative;
  z-index: 2;
  max-width: var(--mt-max, 1200px);
  margin: 0 auto;
}

/* ---- header ---- */
.mtq-head{
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: end;
  gap: clamp(26px, 4vw, 56px);
  margin-bottom: clamp(32px, 4vw, 52px);
}
.mtq-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  font-weight: 500;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--mtq-soft);
}
.mtq-eyebrow::before{
  content: "";
  width: 0; height: 1px;
  background: var(--mtq-crimson);
  transition: width 1s var(--mtq-ease) .25s;
}
.mtq-scope.is-in .mtq-eyebrow::before{ width: 46px; }

.mtq-title{
  margin: 0;
  max-width: 20ch;
  font-family: var(--mtq-head);
  font-weight: 600;
  font-size: var(--mtq-h2-size);
  line-height: var(--mtq-h2-line);
  color: var(--mtq-ink);
}
.mtq-sub{
  margin: 14px 0 0;
  max-width: 48ch;
  font-size: 16px;
  line-height: 28px;
  color: var(--mtq-soft);
}

/* ---- score ---- */
.mtq-score{ padding-bottom: 4px; white-space: nowrap; }
.mtq-score__top{ display: flex; align-items: center; gap: 16px; }
.mtq-score__num{
  font-family: var(--mtq-head);
  font-weight: 600;
  font-size: 54px;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--mtq-ink);
  font-variant-numeric: tabular-nums;
}
.mtq-score__label{
  display: block;
  margin-top: 12px;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mtq-surf);
}
.mtq-score__rule{
  display: block;
  height: 1px;
  margin-top: 16px;
  background: var(--mtq-line);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 1.1s var(--mtq-ease) .35s;
}
.mtq-scope.is-in .mtq-score__rule{ transform: scaleX(1); }

/* ---- stars ---- */
.mtq-stars{ display: inline-flex; align-items: center; gap: 4px; line-height: 0; }
.mtq-stars svg{ display: block; color: var(--mtq-gold); }
.mtq-stars svg.is-off{ color: rgba(11,31,41,.16); }
.mtq-scope--dark .mtq-stars svg.is-off{ color: rgba(255,255,255,.2); }
.mtq-stars svg{ opacity: 0; transform: scale(.5) rotate(-25deg); }
.mtq-scope.is-in .mtq-stars svg{
  opacity: 1;
  transform: none;
  transition: opacity .45s var(--mtq-ease), transform .55s cubic-bezier(.2,1.5,.4,1);
}
.mtq-scope.is-in .mtq-stars svg:nth-child(1){ transition-delay: calc(var(--mtq-d, 0ms) + 120ms); }
.mtq-scope.is-in .mtq-stars svg:nth-child(2){ transition-delay: calc(var(--mtq-d, 0ms) + 190ms); }
.mtq-scope.is-in .mtq-stars svg:nth-child(3){ transition-delay: calc(var(--mtq-d, 0ms) + 260ms); }
.mtq-scope.is-in .mtq-stars svg:nth-child(4){ transition-delay: calc(var(--mtq-d, 0ms) + 330ms); }
.mtq-scope.is-in .mtq-stars svg:nth-child(5){ transition-delay: calc(var(--mtq-d, 0ms) + 400ms); }

/* ---- carousel ---- */
.mtq-carousel{
  position: relative;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--mtq-ease) .2s, transform .95s var(--mtq-ease) .2s;
}
.mtq-scope.is-in .mtq-carousel{ opacity: 1; transform: none; }

.mtq-view{ overflow: hidden; margin: -14px; padding: 14px; }
.mtq-track{
  display: flex;
  align-items: stretch;
  gap: var(--mtq-gap);
  transition: transform .75s var(--mtq-ease);
  will-change: transform;
}
.mtq-track.is-dragging{ transition: none; cursor: grabbing; }
.mtq-slide{
  flex: none;
  width: calc((100% - (var(--mtq-vis, 3) - 1) * var(--mtq-gap)) / var(--mtq-vis, 3));
  display: flex;
}

/* ---- masonry wall ---- */
.mtq-wall{
  column-count: 3;
  column-gap: var(--mtq-gap);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--mtq-ease) .2s, transform .95s var(--mtq-ease) .2s;
}
.mtq-scope.is-in .mtq-wall{ opacity: 1; transform: none; }
.mtq-wall .mtq-card{
  break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: var(--mtq-gap);
  display: block;
}
.mtq-wall .mtq-quote{ flex: none; }

/* ---- card ---- */
.mtq-card{
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: clamp(26px, 2.5vw, 34px);
  border-radius: 22px;
  background: var(--mtq-tint, var(--mtq-t1));
  box-shadow: 0 12px 30px -24px rgba(11,31,41,.5);
  overflow: hidden;
  transition: box-shadow .5s var(--mtq-ease), transform .5s var(--mtq-ease);
}
.mtq-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 30px 56px -32px rgba(11,31,41,.5);
}
.mtq-scope--dark .mtq-card{
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 44px -32px rgba(0,0,0,1);
}
.mtq-scope--dark .mtq-card:hover{ box-shadow: 0 40px 76px -38px rgba(0,0,0,1); }

.mtq-slide:nth-child(6n+1) .mtq-card,
.mtq-wall .mtq-card:nth-child(6n+1){ --mtq-tint: var(--mtq-t1); }
.mtq-slide:nth-child(6n+2) .mtq-card,
.mtq-wall .mtq-card:nth-child(6n+2){ --mtq-tint: var(--mtq-t2); }
.mtq-slide:nth-child(6n+3) .mtq-card,
.mtq-wall .mtq-card:nth-child(6n+3){ --mtq-tint: var(--mtq-t3); }
.mtq-slide:nth-child(6n+4) .mtq-card,
.mtq-wall .mtq-card:nth-child(6n+4){ --mtq-tint: var(--mtq-t4); }
.mtq-slide:nth-child(6n+5) .mtq-card,
.mtq-wall .mtq-card:nth-child(6n+5){ --mtq-tint: var(--mtq-t5); }
.mtq-slide:nth-child(6n+6) .mtq-card,
.mtq-wall .mtq-card:nth-child(6n+6){ --mtq-tint: var(--mtq-t6); }

.mtq-card::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mtq-crimson), var(--mtq-gold) 55%, var(--mtq-surf));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s var(--mtq-ease);
}
.mtq-card:hover::before{ transform: scaleX(1); }

.mtq-card::after{
  content: "\201D";
  position: absolute;
  top: -30px; right: 14px;
  font-family: var(--mtq-head);
  font-weight: 600;
  font-size: 128px;
  line-height: 1;
  color: var(--mtq-ink);
  opacity: .06;
  pointer-events: none;
  transition: opacity .6s var(--mtq-ease), transform .6s var(--mtq-ease);
}
.mtq-card:hover::after{ opacity: .11; transform: translateY(4px); }

.mtq-card__stars{ margin-bottom: 16px; }

.mtq-quote{
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  margin: 0;
  font-size: 15px;
  line-height: 27px;
  color: var(--mtq-ink);
}
.mtq-scope--dark .mtq-quote{ color: rgba(255,255,255,.88); }

.mtq-by{
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(11,31,41,.09);
}
.mtq-scope--dark .mtq-by{ border-top-color: rgba(255,255,255,.12); }

.mtq-av{
  position: relative;
  width: 46px; height: 46px;
  flex: none;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, #123240, #0B1F29);
  color: #FFFFFF;
  font-family: var(--mtq-head);
  font-weight: 600;
  font-size: 15px;
  transition: transform .5s var(--mtq-ease);
}
.mtq-scope--dark .mtq-av{
  background: linear-gradient(150deg, var(--mtq-sand), #CBBFA6);
  color: #0B1F29;
}
.mtq-av img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.mtq-card:hover .mtq-av{ transform: scale(1.06) rotate(-4deg); }

.mtq-who{ min-width: 0; }
.mtq-name{
  display: block;
  font-family: var(--mtq-head);
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  color: var(--mtq-ink);
}
.mtq-where{
  display: block;
  margin-top: 2px;
  font-size: 12.5px;
  line-height: 18px;
  color: var(--mtq-soft);
}

/* ---- controls ---- */
.mtq-nav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: clamp(26px, 3vw, 38px);
}
.mtq-arrow{
  width: 50px; height: 50px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--mtq-line);
  background: transparent;
  color: var(--mtq-ink);
  cursor: pointer;
  padding: 0;
  transition: background-color .4s var(--mtq-ease), color .4s var(--mtq-ease),
              border-color .4s var(--mtq-ease), transform .4s var(--mtq-ease),
              opacity .4s var(--mtq-ease);
}
.mtq-arrow:hover{
  background: var(--mtq-ink);
  border-color: var(--mtq-ink);
  color: #FFFFFF;
  transform: scale(1.06);
}
.mtq-scope--dark .mtq-arrow:hover{
  background: var(--mtq-sand);
  border-color: var(--mtq-sand);
  color: #0B1F29;
}
.mtq-arrow[disabled]{
  opacity: .3;
  cursor: default;
  transform: none;
  background: transparent;
  color: var(--mtq-ink);
  border-color: var(--mtq-line);
}

.mtq-dots{
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0; padding: 0;
  list-style: none;
}
.mtq-dots li{ margin: 0; list-style: none; line-height: 0; }
.mtq-dots button{
  width: 8px; height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(11,31,41,.16);
  cursor: pointer;
  transition: width .5s var(--mtq-ease), background-color .5s var(--mtq-ease);
}
.mtq-scope--dark .mtq-dots button{ background: rgba(255,255,255,.2); }
.mtq-dots button.is-on{
  width: 30px;
  background: linear-gradient(90deg, var(--mtq-crimson), var(--mtq-gold));
}

/* ---- Trustindex embed ---- */
.mtq-embed{
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--mtq-ease) .15s, transform .95s var(--mtq-ease) .15s;
}
.mtq-scope.is-in .mtq-embed{ opacity: 1; transform: none; }
.mtq-embed__note{
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 20px;
  color: var(--mtq-soft);
}

.mtq-rise{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--mtq-ease), transform .95s var(--mtq-ease);
  transition-delay: var(--mtq-d, 0ms);
}
.mtq-scope.is-in .mtq-rise{ opacity: 1; transform: none; }

@media (max-width: 1000px){
  .mtq-head{ grid-template-columns: 1fr; align-items: start; }
  .mtq-score{ justify-self: start; }
  .mtq-score__rule{ transform-origin: left; }
  .mtq-wall{ column-count: 2; }
}
@media (max-width: 620px){
  .mtq-scope{ --mtq-h2-size: 32px; --mtq-h2-line: 42px; }
  .mtq-score__num{ font-size: 44px; }
  .mtq-score__label{ white-space: normal; }
  .mtq-arrow{ width: 44px; height: 44px; }
  .mtq-nav{ gap: 14px; }
  .mtq-wall{ column-count: 1; }
}

@media (prefers-reduced-motion: reduce){
  .mtq-scope *,
  .mtq-scope *::before,
  .mtq-scope *::after{
    animation: none !important;
    transition-duration: .001ms !important;
  }
  .mtq-rise, .mtq-carousel, .mtq-wall, .mtq-embed{ opacity: 1; transform: none; }
  .mtq-stars svg{ opacity: 1; transform: none; }
  .mtq-score__rule{ transform: scaleX(1); }
}

/* ============================================================
   6. CLOSING CALL TO ACTION
   Full-width band, content on the 1200px rail.
   ============================================================ */
.mtx-scope{
  --mtx-ink:     #06141A;
  --mtx-deep:    #0C2731;
  --mtx-crimson: #E4194F;
  --mtx-crimson-lo: #B50F3B;
  --mtx-surf:    #2FA3A5;
  --mtx-sand:    #E9DFCD;
  --mtx-white:   #FFFFFF;
  --mtx-mute:    rgba(255,255,255,.72);
  --mtx-line:    rgba(255,255,255,.16);

  --mtx-head: "Lexend Deca", sans-serif;
  --mtx-body: Poppins, sans-serif;

  --mtx-h2-size: 42px;
  --mtx-h2-line: 55px;

  --mt-max: 1200px;
  --mtx-pad: clamp(20px, 4.4vw, 68px);
  --mtx-ease: cubic-bezier(.22,.72,.24,1);

  font-family: var(--mtx-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--mtx-white);
  -webkit-font-smoothing: antialiased;
}
.mtx-scope *,
.mtx-scope *::before,
.mtx-scope *::after{ box-sizing: border-box; }
.mtx-scope :focus-visible{ outline: 2px solid var(--mtx-surf); outline-offset: 4px; border-radius: 10px; }

.mtx-section{
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8.5vw, 124px) var(--mtx-pad);
  background:
    radial-gradient(64% 74% at 16% 8%, rgba(47,163,165,.22) 0%, rgba(47,163,165,0) 62%),
    radial-gradient(58% 74% at 88% 96%, rgba(228,25,79,.20) 0%, rgba(228,25,79,0) 62%),
    linear-gradient(160deg, var(--mtx-deep) 0%, var(--mtx-ink) 64%);
  text-align: center;
}
.mtx-section::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 3;
  background: linear-gradient(90deg, var(--mtx-crimson), var(--mtx-sand) 50%, var(--mtx-surf));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1.4s var(--mtx-ease) .2s;
}
.mtx-scope.is-in .mtx-section::before{ transform: scaleX(1); }

.mtx-section::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/></filter><rect width='140' height='140' filter='url(%23n)' opacity='.3'/></svg>");
}

.mtx-sheen{
  position: absolute;
  inset: -30%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(104deg, rgba(255,255,255,0) 44%, rgba(255,255,255,.07) 50%, rgba(255,255,255,0) 56%);
  transform: translateX(-60%);
  animation: mtx-sheen 12s cubic-bezier(.5,0,.5,1) 2s infinite;
}
@keyframes mtx-sheen{
  0%   { transform: translateX(-60%); }
  55%  { transform: translateX(60%); }
  100% { transform: translateX(60%); }
}

.mtx-rail{
  position: relative;
  z-index: 2;
  max-width: var(--mt-max, 1200px);
  margin: 0 auto;
}

.mtx-mark{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 26px;
}
.mtx-mark i{
  display: block;
  width: 0; height: 1px;
  background: linear-gradient(90deg, rgba(233,223,205,0), var(--mtx-sand));
  transition: width 1.1s var(--mtx-ease) .3s;
}
.mtx-mark i + i{ background: linear-gradient(90deg, var(--mtx-sand), rgba(233,223,205,0)); }
.mtx-scope.is-in .mtx-mark i{ width: clamp(40px, 8vw, 110px); }
.mtx-mark span{
  font-weight: 500;
  font-size: 10.5px;
  line-height: 1;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--mtx-sand);
  white-space: nowrap;
}

.mtx-title{
  margin: 0;
  font-family: var(--mtx-head);
  font-weight: 600;
  font-size: var(--mtx-h2-size);
  line-height: var(--mtx-h2-line);
  color: var(--mtx-white);
}
.mtx-text{
  margin: 18px auto 0;
  max-width: 46ch;
  font-size: 16px;
  line-height: 28px;
  color: var(--mtx-mute);
}

.mtx-actions{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
  flex-wrap: wrap;
  margin-top: clamp(34px, 4vw, 54px);
}

.mtx-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 21px 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mtx-crimson) 0%, var(--mtx-crimson-lo) 100%);
  color: var(--mtx-white);
  font-weight: 600;
  font-size: 12.5px;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 18px 46px -14px rgba(228,25,79,.9);
  transition: box-shadow .45s var(--mtx-ease), transform .45s var(--mtx-ease);
}
.mtx-btn span{ position: relative; z-index: 1; }
.mtx-btn svg{ position: relative; z-index: 1; transition: transform .4s var(--mtx-ease); }
.mtx-btn::after{
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-18deg);
  transition: left .8s var(--mtx-ease);
}
.mtx-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 58px -14px rgba(228,25,79,1);
}
.mtx-btn:hover::after{ left: 130%; }
.mtx-btn:hover svg{ transform: translateX(5px); }

.mtx-or{
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  font-size: 10.5px;
  line-height: 1;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}
.mtx-or i{ display: block; width: 1px; height: 26px; background: var(--mtx-line); }

.mtx-support{
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 12px 26px 12px 12px;
  border-radius: 999px;
  border: 1px solid var(--mtx-line);
  background: rgba(255,255,255,.04);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: inherit;
  text-decoration: none;
  transition: background-color .45s var(--mtx-ease), border-color .45s var(--mtx-ease), transform .45s var(--mtx-ease);
}
.mtx-support:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.08);
  border-color: rgba(233,223,205,.4);
}
.mtx-support__av{
  position: relative;
  width: 52px; height: 52px;
  flex: none;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(233,223,205,.45);
  background: linear-gradient(140deg, #1B4552, #0F2C38);
}
.mtx-support__av img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.mtx-support__av::after{
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(47,163,165,.55);
  animation: mtx-pulse 3.4s ease-out infinite;
}
@keyframes mtx-pulse{
  0%   { transform: scale(.86); opacity: .9; }
  70%  { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(1.2); opacity: 0; }
}
.mtx-support__txt{ text-align: left; }
.mtx-support__label{
  display: block;
  font-weight: 500;
  font-size: 9.5px;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(233,223,205,.7);
  margin-bottom: 6px;
}
.mtx-support__tel{
  display: block;
  font-family: var(--mtx-head);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.1;
  color: var(--mtx-white);
  white-space: nowrap;
}
.mtx-support:hover .mtx-support__tel{ color: var(--mtx-sand); }

.mtx-rise{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--mtx-ease), transform .95s var(--mtx-ease);
  transition-delay: var(--mtx-d, 0ms);
}
.mtx-scope.is-in .mtx-rise{ opacity: 1; transform: none; }

@media (max-width: 720px){
  .mtx-scope{ --mtx-h2-size: 30px; --mtx-h2-line: 40px; }
  .mtx-actions{ flex-direction: column; gap: 18px; }
  .mtx-btn{ width: 100%; justify-content: center; }
  .mtx-or{ gap: 12px; }
  .mtx-or i{ width: 40px; height: 1px; }
  .mtx-support{ width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce){
  .mtx-scope *,
  .mtx-scope *::before,
  .mtx-scope *::after{
    animation: none !important;
    transition-duration: .001ms !important;
  }
  .mtx-rise{ opacity: 1; transform: none; }
  .mtx-scope.is-in .mtx-section::before{ transform: scaleX(1); }
  .mtx-scope.is-in .mtx-mark i{ width: clamp(40px, 8vw, 110px); }
}
