/* Much Much Media — Homepage (Hero / What We Do / What We've Made)
   Ported from the v3 prototype. Keep section 4+ styles appended below
   this file as later sections get built, rather than starting a new file. */

/* Open Sauce One is loaded via cdnjs (Fontsource build) in the plugin's
   wp_enqueue_scripts — see much-much-homepage.php. It used to be
   self-hosted here via @font-face pointing at fonts/open-sauce-one/*.woff2,
   but those files were never actually shipped to the theme, so every
   @font-face 404'd silently and the page fell back to system-ui. */

.mm-homepage,
.mm-homepage * { box-sizing: border-box; }
span.mm-proc-arrow {
    display: none;
}
.mm-homepage {
  margin: 0;
  padding: 0;
  font-family: 'Open Sauce One', system-ui, sans-serif;
  background: #141312;
  color: #fffafd;
  -webkit-font-smoothing: antialiased;
  cursor: none;
  overflow-x: clip;
}

.mm-homepage ::selection { background: #fff626; color: #141312; }

.mm-homepage a:hover { color: #fff626; }
.mm-homepage button,
.mm-homepage [data-cursor] { cursor: none; }

@keyframes mm-spin { to { transform: rotate(360deg); } }
@keyframes mm-marq-l { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes mm-marq-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes mm-muchpulse { 0%, 100% { transform: rotate(0deg) translateY(0); } 50% { transform: rotate(-2.5deg) translateY(-2px); } }

@media (prefers-reduced-motion: reduce) {
  .mm-marq { animation: none !important; }
  .mm-homepage { cursor: auto; }
  .mm-hide-rm { display: none !important; }
}

/* ---------- custom cursor ---------- */
#mm-cur-dot {
  position: fixed; left: 0; top: 0; z-index: 100;
  width: 10px; height: 10px; border-radius: 50%;
  background: #fff626; pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .2s, height .2s;
}
#mm-cur-chip {
  position: fixed; left: 0; top: 0; z-index: 99;
  pointer-events: none; display: flex; align-items: center; justify-content: center;
  width: 84px; height: 84px; border-radius: 50%;
  background: #fff626; color: #141312;
  font-weight: 800; font-size: 12px; letter-spacing: .14em;
  transform: translate(-50%, -50%) scale(0);
  transition: transform .3s cubic-bezier(.2,.8,.25,1), background .3s;
}

/* ---------- reveal-on-scroll ---------- */
.mm-homepage [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.25,1);
}
.mm-homepage [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .mm-homepage [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- hero ---------- */
.mm-hero-wrap { height: 170vh; position: relative; }
.mm-hero-stick {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.mm-hero-media {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, #1d1c1a 0 18px, #171614 18px 36px);
  display: flex; align-items: center; justify-content: center;
  transform-origin: center center;
  will-change: transform, border-radius;
}
.mm-hero-media video { width: 100%; height: 100%; object-fit: cover; }
/* YouTube/Vimeo background embeds — iframes can't use object-fit, so we
   oversize + center via the classic 16:9 overscan trick: width is driven
   off viewport height (177.78% = 16/9) and vice-versa, whichever is
   larger, so the iframe always fully covers the box with no letterboxing. */
.mm-hero-embed { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.mm-hero-embed--mobile { display: none; }
@media (max-width: 760px) {
  .mm-hero-embed--desktop { display: none; }
  .mm-hero-embed--mobile { display: block; }
}
/* Pasted embed snippets (YouTube/Vimeo/etc.) almost always ship their own
   wrapper <div> and inline width/height/padding-bottom styles for their
   own "responsive" trick. Inline styles beat our external stylesheet by
   default, which is why the embed used to stop partway across instead of
   filling the hero — so every level below .mm-hero-embed is forced full
   bleed with !important, regardless of what the pasted code brings. */
.mm-hero-embed > * {
  position: absolute !important; inset: 0 !important;
  width: 100% !important; height: 100% !important;
  max-width: none !important; max-height: none !important;
  margin: 0 !important; padding: 0 !important;
}
.mm-hero-embed iframe {
  position: absolute !important; top: 50% !important; left: 50% !important;
  width: 177.78vh !important; height: 100vh !important;      /* height-driven overscan */
  min-width: 100% !important; min-height: 56.25vw !important; /* width-driven overscan fallback */
  max-width: none !important; max-height: none !important;
  transform: translate(-50%, -50%) !important;
  border: 0 !important;
}
.mm-hero-media-label {
  font-family: 'Open Sauce One'; font-size: 10px; letter-spacing: .4em;
  color: rgba(255,250,253,.35);
}
.mm-hero-badge { position: absolute; right: 44px; bottom: 44px; width: 110px; height: 110px; }
.mm-hero-badge svg { width: 100%; height: 100%; animation: mm-spin 14s linear infinite; }
.mm-hero-badge-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #fff626;
}
span.mm-comm-name {
    color: #fff626;
}
.mm-hero-copy {
  position: relative; z-index: 2; text-align: center; padding: 0 24px; pointer-events: none;
  will-change: transform, opacity;
}
.mm-hero-copy h1 {
  font-weight: 700; font-size: min(9.5vw, 110px); line-height: .92; letter-spacing: -.04em; margin: 0;
}
.mm-hero-accent { font-family: ui-sans-serif; font-style: italic; font-weight: 700!important; color: #fff626 };
.mm-hero-caps { text-transform: none; }
.mm-hero-scrolltip {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  font-family: 'Open Sauce One'; font-size: 9.5px; letter-spacing: .3em;
  color: rgba(255,250,253,.4); z-index: 2;
}

/* ---------- what we do ---------- */
.mm-wwd { position: relative; background: #141312; padding: 8vh 44px 14vh; }
.mm-section-inner { max-width: 1240px; margin: 0 auto; }
.mm-eyebrow { display: flex; align-items: baseline; gap: 18px; }
.mm-eyebrow-label { font-family: 'Open Sauce One'; font-size: 12px; letter-spacing: .28em;font-weight:800; color: #fff626; }
.mm-eyebrow-line { flex: 1; height: 1px; background: linear-gradient(to right, #3a3835, transparent); }
.mm-wwd-intro { font-size: 16px; line-height: 1.6; color: #8f8b85; max-width: 52ch; margin: 34px 0 0; }
.mm-wwd-list { margin-top: 44px; position: relative; }

#mm-wwd-preview {
  position: absolute; z-index: 5; width: 300px; aspect-ratio: 16/11; border-radius: 12px;
  background: repeating-linear-gradient(45deg, #2b2926 0 12px, #242220 12px 24px);
  border: 1px solid #3a3835; pointer-events: none; opacity: 0;
  transform: scale(.9) rotate(-3deg);
  transition: opacity .3s, transform .4s cubic-bezier(.2,.8,.25,1);
  right: 4%; top: 10%;
  background-size: cover; background-position: center;
}

.mm-wwd-row {
  position: relative; display: flex; align-items: baseline; gap: 26px;
  padding: 8px 0; border-bottom: 1px solid #262421;
  transition: padding .35s cubic-bezier(.2,.8,.25,1);
}
.mm-wwd-num { font-family: 'Open Sauce One'; font-size: 12px; color: #57534d; min-width: 34px; }
.mm-wwd-name {
  font-weight: 700; font-size: min(5.2vw, 50px); line-height: 1.16; letter-spacing: -.03em;
  color: #57534d; transition: color .3s, transform .35s cubic-bezier(.2,.8,.25,1);
  display: inline-block;
}
.mm-wwd-tag {
  font-family: 'Open Sauce One'; font-size: 10px; letter-spacing: .18em;
  color: #fff626; opacity: 0; transition: opacity .3s; margin-left: auto;
}
.mm-wwd-row.is-hover .mm-wwd-name { color: #fffafd; transform: translateX(16px); }
.mm-wwd-row.is-hover .mm-wwd-tag { opacity: 1; }

.mm-wwd-watermark {
  position: absolute; left: -1%; bottom: -3%; font-weight: 800; font-size: 200px; line-height: 1;
  color: rgba(255,250,253,.02); letter-spacing: -.06em; pointer-events: none; user-select: none;
}

.mm-ticker-strip {
  overflow: hidden; padding: 18px 0;
  border-top: 1px solid #262421; border-bottom: 1px solid #262421; background: #141312;
}
.mm-marq { display: flex; width: max-content; animation: mm-marq-l 44s linear infinite; }
.mm-ticker-word { white-space: pre; font-weight: 800; font-size: 30px; letter-spacing: -.01em; color: #fffafd; }
.mm-ticker-word .mm-hero-accent { font-size: inherit; }

/* ---------- what we've made ---------- */
.mm-wwm { background: #f4efe9; color: #141312; padding: 8vh 30px; position: relative; }
.mm-wwm .mm-eyebrow-label { color: #FF4949; }
.mm-wwm .mm-eyebrow-line { background: linear-gradient(to right, #d8d1c7, transparent); }
.mm-wwm-heading {
  font-weight: 700; font-size: min(6vw, 40px); line-height: 48px; letter-spacing: -.035em;
  margin: 30px 0 0; max-width: 16ch;
}
.mm-wwm-heading em {
    font-family: ui-sans-serif;
    font-style: italic;
    color: #FF4949;
    font-size: 45px;
}

.mm-feature-card {
  margin-top: 70px; display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; align-items: end;
}
.mm-feature-media {
  aspect-ratio: 16/10; border-radius: 16px; overflow: hidden; position: relative; background: #e2dbd1;
}
.mm-feature-media img,
.mm-work-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mm-feature-media [data-zoom],
.mm-work-media [data-zoom] {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, #ddd5ca 0 14px, #d4ccc0 14px 28px);
  transition: transform .7s cubic-bezier(.2,.8,.25,1);
}
.mm-feature-tag {
  position: absolute; left: 18px; top: 16px;
  font-family: 'Open Sauce One'; font-size: 9.5px; letter-spacing: .16em;
  background: #141312; color: #fff626; padding: 5px 10px; border-radius: 6px;
}
span.mm-work-more-accent {
    color:#FF4949;
}
.mm-feature-client { font-family: 'Open Sauce One'; font-size: 12px; font-weight:800;letter-spacing: .2em; color: #8f8b85; }
.mm-feature-title { font-weight: 800; font-size: 40px; line-height: 1; letter-spacing: -.03em; margin-top: 12px; }
.mm-feature-desc { font-size: 14.5px; line-height: 1.6; color: #57534d; margin: 16px 0 0; max-width: 34ch; }

.mm-work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px 60px; margin-top: 30px; }
.mm-work-media { border-radius: 14px; overflow: hidden; position: relative; background: #e2dbd1; }
.mm-work-media.is-portrait { aspect-ratio: 4/5; }
.mm-work-media.is-landscape { aspect-ratio: 16/11; }
.mm-work-meta {
  display: flex; align-items: baseline; justify-content: space-between; margin-top: 14px;
  border-bottom: 1.5px solid #141312; padding-bottom: 10px;
}
.mm-work-item.is-visible {
    margin-top: 30px!important;
}
.mm-work-title { font-weight: 700; font-size: 16px; letter-spacing: -.01em; }
.mm-work-year { font-family: 'Open Sauce One'; font-size: 12px;font-weight:800; letter-spacing: .14em; color: #8f8b85; }

.mm-work-more { align-self: center; justify-self: center; text-align: center; }
.mm-work-more-text { font-family: ui-sans-serif; font-style: italic; font-weight: 700; font-size: 40px; color: #141312; line-height:48px; }
.mm-work-more-btn {
  display: inline-flex; margin-top: 20px; padding: 13px 28px; border-radius: 999px;
  background: #141312; color: #f4efe9; font-weight: 700; font-size: 14px;
  transition: transform .2s ease-out;
}

@media (max-width: 780px) {
  .mm-feature-card,
  .mm-work-grid { grid-template-columns: 1fr; }
  #mm-wwd-preview { display: none; }
}

/* ---------- why much much ---------- */
.mm-why { background: #141312; padding: 8vh 30px; position: relative; overflow: hidden; }
.mm-why-watermark {
  position: absolute; left: 50%; top: 8%; transform: translateX(-50%);
  font-weight: 800; font-size: min(24vw, 300px); line-height: 1;
  color: rgba(255,250,253,.025); letter-spacing: -.06em; pointer-events: none; white-space: nowrap;
}
.mm-why-heading { font-weight: 700; font-size: min(5vw, 40px); line-height: 48px; letter-spacing: -.03em; margin: 34px 0 0; max-width: 20ch; }
.mm-why-stats { margin-top: 80px; display: flex; flex-direction: column; gap: 8px; }
.mm-why-stat-row { display: flex; align-items: baseline; gap: 30px; flex-wrap: wrap; }
.mm-why-stat-row.is-flip { justify-content: flex-end; text-align: right; }
.mm-why-stat-number { font-weight: 700; font-size: min(13vw, 120px); line-height: .9; letter-spacing: -.05em; color: #fffafd; }
.mm-why-stat-number.is-accent { color: #fff626; }
.mm-why-stat-desc { font-size: 26px; color: #cecece; max-width: 24ch; line-height: 1.5; }

@media (max-width: 640px) {
	/* Desktop alternates left/right-aligned rows (.is-flip) for a zigzag
	   layout, which also swaps the markup order (desc-then-number on
	   flipped rows). On a narrow column that just looks like the number
	   and label randomly swap places row to row — force every row to the
	   same order (number, then description) and the same left alignment
	   with the "order" property, independent of which element the markup
	   puts first. */
	.mm-why-stats { margin-top: 48px; gap: 26px; }
	.mm-why-stat-row,
	.mm-why-stat-row.is-flip { flex-direction: column; align-items: flex-start; justify-content: flex-start; text-align: left; gap: 4px; }
	.mm-why-stat-number { order: 1; font-size: min(22vw, 46px); }
	.mm-why-stat-desc { order: 2; font-size: 16px; }
}

/* ---------- partners (v4 — greyscale logo/text grid) ---------- */
.mm-partners { background: #faf7f1; padding: 6vh clamp(20px,4vw,44px) 12vh; }
.mm-partners .mm-eyebrow-label { font-size: 12px; font-weight: 500; color:#FF4949; }
.mm-partners .mm-eyebrow-line { background: linear-gradient(to right, rgba(27,25,22,.16), transparent); }
.mm-partners-heading {
  font-weight: 700; font-size: min(4.4vw, 40px); line-height:48px; letter-spacing: -.02em;
  color: #1b1916; margin: 24px 0 44px; max-width: 26ch;
}
.mm-partners-accent { font-family:ui-sans-serif; font-style: italic; font-weight: 700; color: #ff4949; font-size:45px; }
.mm-partners-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 26px 30px; margin-top: 48px; align-items: center;
}
.mm-partner-item {
  min-height: 76px; display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 10px; font-weight: 700; font-size: 15px; letter-spacing: .01em; color: #8f8b85;
  filter: grayscale(1); transition: filter .3s ease, color .3s ease, transform .3s ease;
}
.mm-partner-item:hover { filter: grayscale(0); color: #1b1916; transform: scale(1.06); }
.mm-partner-item img { max-width: 100%; max-height: var(--mm-partner-logo-h, 42px); width: auto; object-fit: contain; }
.mm-partners-caption { font-family: 'Open Sauce One'; font-size: 10px; letter-spacing: .18em; color: #b7af9f; margin-top: 16px; }
.mm-comm-grid span.mm-hero-accent {
    font-size: 45px;
}
section.mm-why .mm-section-inner span.mm-hero-accent {
    font-size: 45px;
}
/* ---------- process (v4 — drag carousel) ---------- */
.mm-proc { background: #f4efe7; padding: 12vh clamp(20px,4vw,44px); position: relative; }
.mm-proc-inner { max-width: 1240px; margin: 0 auto; position: relative; }
.mm-proc .mm-eyebrow-label { font-size: 12px; font-weight: 800; color: #FF4949; }
.mm-proc .mm-eyebrow-line { background: linear-gradient(to right, rgba(27,25,22,.16), transparent); }
.mm-proc-heading { font-weight: 700; font-size: clamp(32px,5vw,40px); line-height: 48px; letter-spacing: -.03em; margin: 28px 0 0; color: #1b1916; }
.mm-proc-accent { font-family:ui-sans-serif; font-style: italic; font-weight: 700; color: #e5484d; display: inline-block; font-size: 45px!important; }
.mm-pulse { animation: mm-muchpulse 4.5s ease-in-out infinite; }
.mm-proc-caption {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-top: 44px; flex-wrap: wrap;
  font-family: 'Open Sauce One'; font-size: 11px; letter-spacing: .22em; color: #8f8b85;
}
.mm-proc-arrow { color: #e5484d; }

.mm-proc-carousel {
  display: flex; margin-top: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; align-items: stretch; padding-bottom: 10px; user-select: none; cursor: grab;
}
/* while the user is actively mouse-dragging, snapping fights the manual
   scrollLeft updates and yanks the carousel back — turn it off until release */
.mm-proc-carousel.is-dragging { scroll-snap-type: none; cursor: grabbing; }
.mm-proc-carousel::-webkit-scrollbar { display: none; }
.mm-proc-slide { flex: none; display: flex; align-items: center; scroll-snap-align: start; }
.mm-proc-card {
  width: min(380px, 76vw); background: #fffdf8; border: 1px solid rgba(27,25,22,.08); border-radius: 18px;
  padding: 28px; min-height: 240px; display: flex; flex-direction: column; box-shadow: 0 1px 2px rgba(27,25,22,.05);
}
.mm-proc-card-top { display: flex; align-items: center; justify-content: space-between; }
.mm-proc-icon { width: 46px; height: 46px; border-radius: 50%; background: #faf7f1; border: 1.5px solid #1b1916; display: flex; align-items: center; justify-content: center; flex: none; }
.mm-proc-icon svg { width: 20px; height: 20px; }
.mm-proc-icon svg path { fill: none; stroke: #1b1916; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.mm-proc-num { font-family: 'Open Sauce One';font-weight:800; font-size: 12px; letter-spacing: .2em; color:#FF4949; }
.mm-proc-title { font-weight: 800; font-size: 26px; letter-spacing: -.02em; margin-top: 20px; color: #1b1916; }
.mm-proc-copy { font-size: 14.5px; line-height: 1.6; color: #6d675e; margin: 10px 0 0; }
.mm-proc-connector { flex: none; padding: 0 20px; font-family: 'Open Sauce One', system-ui, sans-serif; font-style: italic; font-weight: 700; font-size: 18px; color: #b7af9f; white-space: nowrap; }

.mm-proc-finale {
  width: min(380px, 76vw); background: #ffe81a; border-radius: 18px; padding: 28px; min-height: 240px;
  display: flex; flex-direction: column; justify-content: center; gap: 16px; position: relative; overflow: hidden;
}
.mm-proc-finale-text { font-family: 'Open Sauce One', system-ui, sans-serif; font-style: italic; font-weight: 700; font-size: clamp(24px,3vw,32px); line-height: 1.25; color: #1b1916; }
.mm-proc-finale-accent { color: #e5484d; }
.mm-proc-finale-badge { position: absolute; right: 16px; bottom: 14px; width: 84px; height: 84px; }
.mm-proc-finale-badge svg { width: 100%; height: 100%; animation: mm-spin 12s linear infinite; }
.mm-proc-finale-badge-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 17px; }

.mm-proc-track { position: relative; height: 2px; background: rgba(27,25,22,.12); margin-top: 26px; }
.mm-proc-progress { position: absolute; left: 0; top: 0; bottom: 0; width: 0%; background: #1b1916; transition: width .2s ease-out; }
.mm-proc-rider {
  position: absolute; left: 0%; top: 50%; transform: translate(-50%,-50%);
  background: #ffe81a; color: #1b1916; font-family: 'Open Sauce One', system-ui, sans-serif; font-style: italic; font-weight: 700; font-size: 14px;
  padding: 3px 12px; border-radius: 999px; white-space: nowrap; box-shadow: 0 6px 16px -6px rgba(27,25,22,.3);
  transition: left .2s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .mm-pulse { animation: none !important; }
  .mm-proc-progress,
  .mm-proc-rider { transition: none !important; }
}

/* ---------- fun ticker (v4) ---------- */
.mm-tickwrap { position: relative; overflow: hidden; padding: 20px 0; border-top: 1px solid rgba(27,25,22,.09); border-bottom: 1px solid rgba(27,25,22,.09); background: #faf7f1; }
.mm-tick-word { white-space: pre; font-weight: 800; font-size: 34px; letter-spacing: -.01em; color: #1b1916; }
.mm-tick-word.is-outline { color: transparent; -webkit-text-stroke: 1.5px #1b1916; }
.mm-tick-msg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(250,247,241,.92); opacity: 0; pointer-events: none; transition: opacity .3s ease; font-family: 'Open Sauce One', system-ui, sans-serif; font-style: italic; font-weight: 700; font-size: 24px; color: #1b1916; text-align: center; padding: 0 20px; }
.mm-tick-msg-accent { color: #e5484d; }

/* ---------- communities (v3) ---------- */
.mm-comm { background: #141312; padding: 8vh 32px; position: relative; overflow: hidden; }
.mm-comm-watermark { position: absolute; right: -2%; top: 4%; font-weight: 800; font-size: 190px; line-height: 1; color: rgba(255,250,253,.02); letter-spacing: -.06em; pointer-events: none; }
.mm-comm-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: flex-start;
    margin-top: 40px;
}
.mm-comm-heading { font-weight: 700; font-size: min(4.6vw, 40px); line-height: 48px; letter-spacing: -.03em; margin: 0; }
.mm-comm-intro { font-size: 15px; line-height: 1.65; color: #8f8b85; margin: 20px 0 0; max-width: 42ch; }
.mm-comm-list { display: flex; flex-direction: column; gap: 0; margin-top: 30px; }
.mm-comm-row { display: flex; justify-content: space-between; align-items: baseline; padding: 15px 4px; border-top: 1px solid #262421; transition: padding .3s; }
.mm-comm-row:hover { padding-left: 14px; }
.mm-comm-name { font-weight: 700; font-size: 19px; }
.mm-comm-members { font-family: 'Open Sauce One'; font-size: 16px; letter-spacing: .12em; color: #fff626; }
.mm-comm-list-end { border-top: 1px solid #262421; }
.mm-comm-phones { position: relative; height: 560px; }
.mm-comm-phone {
    position: absolute;
    width: 254px;
    aspect-ratio: auto;
    border-radius: 10px;
    border: 7px solid #2b2926;
    background: repeating-linear-gradient(45deg,#242220 0 12px,#1e1c1a 12px 24px);
    will-change: transform;
    box-shadow: 0 40px 70px -30px rgba(0,0,0,.7);
    overflow: hidden;
}
.mm-comm-phone img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mm-comm-phone-1 { left: 4%; top: 6%; }
.mm-comm-phone-2 { left: 36%; top: 0; width: 250px; z-index: 2; }
.mm-comm-phone-3 { right: 0; top: 12%; width: 235px; }
.mm-comm-phones-caption { position: absolute; left: 0; right: 0; bottom: -6px; text-align: center; font-family: 'Open Sauce One'; font-size: 9.5px; letter-spacing: .18em; color: #57534d; }

/* ---------- workshops ticket (v3) ---------- */
.mm-ticket-section { background: #141312; padding: 4vh 44px 16vh; }
.mm-ticket-inner { max-width: 900px; margin: 0 auto; }
.mm-ticket { position: relative; display: grid; grid-template-columns: 1fr 240px; background: #fff626; color: #141312; border-radius: 18px; transition: transform .4s cubic-bezier(.2,.8,.25,1), box-shadow .4s; }
.mm-ticket:hover { transform: rotate(-1deg) scale(1.015); box-shadow: 0 40px 80px -30px rgba(255,246,38,.25); }
.mm-ticket-perf { position: absolute; right: 240px; top: 0; bottom: 0; width: 0; border-right: 2.5px dashed rgba(20,19,18,.35); }
.mm-ticket-hole { position: absolute; right: 227px; width: 26px; height: 26px; border-radius: 50%; background: #141312; }
.mm-ticket-hole-top { top: -13px; }
.mm-ticket-hole-bottom { bottom: -13px; }
.mm-ticket-main { padding: 34px 38px; }
.mm-ticket-label { font-family: 'Open Sauce One'; font-size: 10px; letter-spacing: .26em; }
.mm-ticket-heading { font-weight: 800; font-size: min(5vw, 46px); line-height: 1; letter-spacing: -.03em; margin-top: 12px; }
.mm-ticket-meta { display: flex; gap: 26px; margin-top: 20px; font-family: 'Open Sauce One'; font-size: 10.5px; letter-spacing: .1em; flex-wrap: wrap; }
.mm-ticket-stub { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 24px; transition: transform .4s cubic-bezier(.2,.8,.25,1); }
.mm-ticket-serial { font-family: 'Open Sauce One'; font-size: 9.5px; letter-spacing: .2em; writing-mode: vertical-rl; white-space: nowrap; margin-bottom: 8px; }
.mm-ticket-cta { padding: 11px 22px; border-radius: 999px; background: #141312; color: #fff626; font-weight: 700; font-size: 13px; white-space: nowrap; transition: transform .2s ease-out; display: inline-block; }

@media (max-width: 900px) {
  .mm-comm-grid { grid-template-columns: 1fr; }

  /* Desktop absolutely-positions 3 overlapping phones by percentage — on a
     narrow screen that just squashes them into a messy overlapping pile.
     Below, it becomes a swipeable horizontal slider instead: each phone is
     a normal flex item (not absolutely positioned), a little smaller, no
     rotation, snapping one-at-a-time. */
  .mm-comm-phones {
    height: auto; display: flex; gap: 14px; margin-top: 18px;
    overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; padding: 4px 4px 8px;
  }
  .mm-comm-phones::-webkit-scrollbar { display: none; }
  .mm-comm-phone,
  .mm-comm-phone-1, .mm-comm-phone-2, .mm-comm-phone-3 {
    position: relative; left: auto; right: auto; top: auto; z-index: auto;
    flex: none; width: 68vw; max-width: 210px;
    transform: none !important; /* overrides the JS parallax rotate/translate inline style */
  }
  .mm-comm-phones-slide-hint {
    display: block; text-align: center; margin-top: 10px;
    font-family: 'Open Sauce One'; font-size: 10px; letter-spacing: .22em; color: #57534d;
  }
}
@media (min-width: 901px) {
  .mm-comm-phones-slide-hint { display: none; }
}
@media (max-width: 640px) {
  .mm-ticket { grid-template-columns: 1fr; }
  .mm-ticket-perf, .mm-ticket-hole { display: none; }
  .mm-ticket-stub { flex-direction: row; padding: 20px 38px 34px; }
  .mm-ticket-serial { writing-mode: horizontal-tb; margin-bottom: 0; }
}