/* Much Much Media — About Us page */

.mmau-page {
	--mmau-ink: #1B1916;
	--mmau-ink-deep: #141210;
	--mmau-ink-deeper: #12100E;
	--mmau-cream: #FAF7F1;
	--mmau-yellow: #FFE81A;
	--mmau-rust: #B3540F;
	--mmau-red: #E5484D;
	--mmau-coral: #FF6B62;
	--mmau-tint: #F4EFE7;
	--mmau-body: #4A453E;
	--mmau-muted: #8F8B85;
	--mmau-muted-light: #C9C3B8;
	--mmau-font-serif: Open Sauce One;
	--mmau-font-mono: 'JetBrains Mono', monospace;
	--mmau-font-heading: 'Open Sauce One', 'Bricolage Grotesque', system-ui, sans-serif;
	--mmau-font-ui-sans: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
 
	background: var(--mmau-cream); color: var(--mmau-ink); overflow-x: clip; margin: 0;
}
/* Headings: font-family only — deliberately not touching line-height, each
   heading class already sets its own tight line-height and overriding it
   here clipped ascenders/descenders. */
.mmau-page h1, .mmau-page h2, .mmau-page h3, .mmau-page h4, .mmau-page h5, .mmau-page h6 {
	font-family: var(--mmau-font-heading);
}
/* Standard heading size — Open Sauce One, 40px/48px, weight 700. Use on any
   heading (h1–h6) or via the .mmau-heading utility class that doesn't need
   one of the bespoke clamp()-sized heading styles further down (.mmau-h2,
   .mmau-hero-title, etc). */
.mmau-page h1.mmau-heading, .mmau-page h2.mmau-heading, .mmau-page h3.mmau-heading,
.mmau-page h4.mmau-heading, .mmau-page h5.mmau-heading, .mmau-page h6.mmau-heading,
.mmau-page .mmau-heading {
	font-family: var(--mmau-font-heading);
	font-size: 40px;
	line-height: 48px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0;
}
.mmau-page *, .mmau-page *::before, .mmau-page *::after { box-sizing: border-box; }
.mmau-page ::selection { background: var(--mmau-yellow); color: var(--mmau-ink); }
.mmau-mono {
    font-family: 'Open Sauce One';
}
.mmau-hide-rm { }
@media (prefers-reduced-motion: reduce) { .mmau-hide-rm { display: none !important; } }
@media (max-width: 760px) { .mmau-hide-rm { display: none !important; } }

.mmau-accent { font-family: var(--mmau-font-ui-sans); font-style: italic; font-weight: 400; color: #ff4949; display: inline-block; }
.mmau-accent-yellow { color: var(--mmau-yellow); }
.mmau-accent-red { color: #ff4949; }
.mmau-accent-red-italic {
    font-family: ui-sans-serif;
    font-style: italic;
    font-weight: 500;
    color:#ff4949;
}

.mmau-inner { max-width: 1240px; margin: 0 auto; position: relative; }
.mmau-inner--narrow { max-width: 1030px; text-align: center; }

.mmau-eyebrow-row { display: flex; align-items: baseline; gap: 18px; }
.mmau-eyebrow-line { flex: 1; height: 1px; }
.mmau-eyebrow-line--dark { background: linear-gradient(to right, rgba(27,25,22,0.16), transparent); }
.mmau-eyebrow-line--light { background: linear-gradient(to right, rgba(250,247,241,0.2), transparent); }
.mmau-eyebrow--rust {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.26em;
    color: #FF4949;
    line-height: 18px;
    font-family: 'Open Sauce One';
}
.mmau-eyebrow--yellow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.26em;
    color: #FFF626;
    font-family: 'Open Sauce One';
}
.mmau-community-copy h2.mmau-h2 {
    margin-top: 15px;
}
.mmau-section--dark h2.mmau-h2.mmau-h2--big {
    margin-top: 15px;
}
.mmau-eyebrow--dim {   font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.26em;
    color: #FFF626;
    font-family: 'Open Sauce One';}
.mmau-eyebrow--dim2 { font-size: 10.5px; letter-spacing: 0.18em; color: rgba(250,247,241,0.45); }
.mmau-community-copy {
    margin-top: -15px;
}
.mmau-h2 {
    font-weight: 700;
    font-size: clamp(28px, 4.4vw, 40px);
    line-height: 48px;
    letter-spacing: -0.03em;
    max-width: 26ch;
    margin-top: 30px;
}
.mmau-h2--big {
    font-size: clamp(34px, 7vw, 101px);
    line-height: 124px;
    letter-spacing: -0.04em;
    max-width: none;
    font-weight: 700;
}
.mmau-h2--cta {
    font-size: clamp(30px, 5vw, 50px);
    line-height: 70px;
    letter-spacing: -0.035em;
    margin: 0;
    max-width: none;
}
.mmau-body-text { font-size: 16px; line-height: 1.7; color: var(--mmau-body); margin: 14px 0 0; max-width: 46ch; }

/* Hero's own reveal is a one-time load-in fade (JS adds .mmau-hero-in on a
   short stagger after DOMContentLoaded) — deliberately NOT tied to scroll
   position, so it always plays immediately regardless of what's stacked
   above the hero (e.g. an optional Banner). Everything else on the page
   uses the continuous scroll-linked reveal instead (set via inline style
   in JS, no CSS transition needed here). */
 
.mmau-hero [data-reveal] {
	   opacity: 0;
    transform: translateY(24px);
 transition: opacity .7s cubic-bezier(.2, .8, .25, 1), transform .7s cubic-bezier(.2, .8, .25, 1); 

}
.mmau-hero [data-reveal].mmau-hero-in { opacity: 1; transform: none; }
.mmau-hero [data-sweep] {
	clip-path: inset(0 100% 0 0);
	transition: clip-path .9s cubic-bezier(.2,.8,.25,1);
}
.mmau-hero [data-sweep].mmau-hero-in { clip-path: inset(0 0% 0 0); }
@media (prefers-reduced-motion: reduce) {
	.mmau-hero [data-reveal],
	.mmau-hero [data-sweep] { transition: none; }
}

/* ---------- banner (sits above hero) ---------- */
.mmau-banner { display: block; width: 100%; line-height: 0; position: relative; }
.mmau-banner-img {
	width: 100%; display: block;
 
	object-fit: cover; object-position: center;
}
a.mmau-banner { cursor: pointer; }


/* ---------- hero ---------- */
span.mmau-photo-badge {
    display: none;
}
.mmau-hero {
	position: relative; min-height: 40vh; display: flex; flex-direction: column; justify-content: center;
	padding: clamp(104px, 7vh, 150px) clamp(20px, 4vw, 44px) clamp(90px, 7vh, 64px); overflow: hidden;
	background: radial-gradient(120% 80% at 70% 10%, rgba(255,232,26,0.05), transparent 60%), var(--mmau-ink-deep);
	background-size: cover; background-position: center;
}
.mmau-hero-fade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,16,14,0.6) 0%, transparent 60%); pointer-events: none; }
.mmau-hero-copy { position: relative; max-width: 1240px; margin: 0 auto; width: 100%; color: var(--mmau-cream); }
.mmau-hero-title {
    font-weight: 700;
    font-size: clamp(42px, 8.5vw, 101px);
    letter-spacing: -0.04em;
    margin: 22px 0 0;
    line-height: 120px;
}
.mmau-hero-subtext { font-size: clamp(15px, 1.5vw, 16px); line-height: 1.6; color: rgba(250,247,241,0.78); max-width: 46ch; margin: 22px 0 0; }
.mmau-scroll-hint {
	position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
	font-family: var(--mmau-font-mono); font-size: 9.5px; letter-spacing: 0.3em; color: rgba(250,247,241,0.45); white-space: nowrap;
}
@keyframes mmau-pulse { 0%, 100% { transform: rotate(0deg) translateY(0); } 50% { transform: rotate(-2.5deg) translateY(-2px); } }

/* ---------- generic sections ---------- */
.mmau-section { position: relative; padding: clamp(60px, 10vh, 110px) clamp(20px, 4vw, 44px); }
.mmau-section--tint { background: var(--mmau-tint); overflow: hidden; }
.mmau-section--dark { background: var(--mmau-ink-deep); color: var(--mmau-cream); overflow: hidden; }
.mmau-section--cta { background: var(--mmau-ink-deeper); color: var(--mmau-cream); text-align: center; overflow: hidden; padding: clamp(70px, 12vh, 130px) clamp(20px, 4vw, 44px); }

.mmau-watermark {
	position: absolute; right: -3%; top: 4%; font-weight: 800; font-size: clamp(90px, 14vw, 210px); line-height: 1;
	color: rgba(27,25,22,0.03); letter-spacing: -0.06em; pointer-events: none; user-select: none;
}

/* ---------- manifesto ---------- */
.mmau-manifesto {
    margin-top: clamp(30px, 5vh, 54px);
    font-weight: 700;
    font-size: clamp(24px, 3.6vw, 40px);
    line-height: 48px;
    letter-spacing: -0.025em;
    max-width: 24ch;
}
.mmau-manifesto [data-mword] { white-space: pre-wrap; color: var(--mmau-muted-light); transition: color .45s ease; }

/* ---------- photos ---------- */
.mmau-photo { position: relative; border-radius: 16px; overflow: hidden; background: #EDE7DC; }
.mmau-photo-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s cubic-bezier(.2,.8,.25,1); }
.mmau-photo-pattern { position: absolute; inset: 0; background: repeating-linear-gradient(45deg, #EDE7DC 0 14px, #E3DCD0 14px 28px); transition: transform .7s cubic-bezier(.2,.8,.25,1); }
.mmau-photo-pattern--dark { background: repeating-linear-gradient(45deg, #262320 0 14px, #1F1C19 14px 28px); }
.mmau-photo-badge {
	position: absolute; left: 14px; top: 13px; font-family: var(--mmau-font-mono); font-size: 9.5px; letter-spacing: 0.16em;
	background: var(--mmau-ink); color: var(--mmau-yellow); padding: 5px 10px; border-radius: 5px;
}

.mmau-studio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(20px, 3vw, 34px); margin-top: clamp(40px, 6vh, 64px); }
.mmau-photo--wide { grid-column: span 2; aspect-ratio: 16/9; min-width: 0; }
@media (max-width: 620px) {
	.mmau-photo--wide { grid-column: span 1; }
}
.mmau-studio-copy { display: flex; flex-direction: column; justify-content: flex-end; min-width: 0; }
.mmau-tag {
    font-size: 10px;
    letter-spacing: 0.2em;
    color: #FF4949;
    font-family: 'Open Sauce One';
    font-weight: 700;
}

/* ---------- pipeline outcomes ---------- */
.mmau-outcomes-wrap { position: relative; margin-top: clamp(34px, 5vh, 52px); }
.mmau-outcomes-track { position: absolute; left: 0; right: 0; top: 23px; height: 2px; background: rgba(27,25,22,0.12); }
.mmau-outcomes-progress { position: absolute; left: 0; top: 23px; height: 2px; width: 0%; background: var(--mmau-ink); transition: width 1.2s cubic-bezier(.2,.8,.25,1); }
.mmau-outcomes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(124px, 1fr)); gap: clamp(12px, 2vw, 22px); position: relative; }
.mmau-outcome-icon {
	width: 48px; height: 48px; border-radius: 50%; background: var(--mmau-cream); border: 1.5px solid var(--mmau-ink);
	display: flex; align-items: center; justify-content: center; position: relative; z-index: 1;
	transition: background .3s, transform .3s cubic-bezier(.2,.8,.25,1);
}
.mmau-outcome:hover .mmau-outcome-icon { background: var(--mmau-yellow); }
.mmau-outcome-svg { width: 19px; height: 19px; fill: none; stroke: var(--mmau-ink); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.mmau-outcome-title { font-weight: 800; font-size: clamp(18px, 2.2vw, 25px); letter-spacing: -0.02em; margin-top: 18px; }

@media (max-width: 760px) {
	/* Desktop is a 2-col grid with a horizontal progress line across the
	   top; on a narrow screen that grid still fits 2 columns (icons are
	   only 124px min) so it looks cramped with a dangling empty cell.
	   Below, it becomes a single vertical timeline instead: one column,
	   icon-left/text-right rows, connected by a line down the left edge
	   that draws itself top-to-bottom as you scroll (mirrors the desktop
	   left-to-right draw). */
	.mmau-outcomes-grid { grid-template-columns: 1fr; gap: 0; }
	.mmau-outcomes-track { left: 23px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; }
	.mmau-outcomes-progress { left: 23px; top: 0; width: 2px; height: 0%; transition: height 1.4s cubic-bezier(.2,.8,.25,1); }
	.mmau-outcome { display: flex; align-items: flex-start; gap: 18px; padding: 20px 0; }
	.mmau-outcome-icon { flex: none; margin-top: 2px; }
	.mmau-outcome-title { margin-top: 0; }
}

.mmau-pipeline-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 28px); margin-top: clamp(40px, 6vh, 60px); }
.mmau-photo--pipeline-1, .mmau-photo--pipeline-2, .mmau-photo--pipeline-3 { aspect-ratio: 4/5; min-width: 0; }
@media (max-width: 899px) {
	.mmau-pipeline-photos { grid-template-columns: 1fr; }
}

/* ---------- community + signals ---------- */
.mmau-community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(28px, 4vw, 54px);
    margin-top: clamp(30px, 5vh, 50px);
    align-items: flex-start;
}
textPath {
    font-family: 'Open Sauce One';
}
.mmau-photo--square { aspect-ratio: 1; position: relative; }
.mmau-signals { display: flex; flex-direction: column; margin-top: 26px; }
.mmau-signal { display: flex; align-items: center; gap: 14px; padding: 15px 4px; border-top: 1px solid rgba(27,25,22,0.12); transition: padding .3s; }
.mmau-signal:hover { padding-left: 14px; }
.mmau-signals-bottom-line { border-top: 1px solid rgba(27,25,22,0.12); }
.mmau-sigdot { width: 8px; height: 8px; border-radius: 50%; background: rgba(27,25,22,0.18); flex: none; transition: background .4s, transform .4s; }
.mmau-sigtext { font-size: clamp(15px, 1.8vw, 19px); font-weight: 600; transition: color .4s; color: var(--mmau-muted); }

.mmau-badge-spin { position: absolute; right: 16px; bottom: 16px; width: 92px; height: 92px; }
.mmau-badge-spin-svg { width: 100%; height: 100%; animation: mmau-spin 16s linear infinite; }
.mmau-badge-spin-text { font-family: var(--mmau-font-mono); font-size: 9.5px; letter-spacing: 0.22em; fill: var(--mmau-ink); }
.mmau-badge-spin-center { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 16px; }
@keyframes mmau-spin { to { transform: rotate(360deg); } }

/* ---------- ticker ---------- */
.mmau-tickwrap { position: relative; overflow: hidden; padding: 18px 0; border-top: 1px solid rgba(27,25,22,0.09); border-bottom: 1px solid rgba(27,25,22,0.09); background: var(--mmau-cream); }
.mmau-tick { display: flex; width: max-content; animation: mmau-marq-l 40s linear infinite; align-items: baseline; }
.mmau-tick-word { white-space: pre; font-weight: 800; font-size: clamp(22px, 3vw, 34px); letter-spacing: -0.01em; color: var(--mmau-ink); }
 
.mmau-tick-much {
    font-family: ui-sans-serif;
    font-style: italic;
    font-weight: 700;
    -webkit-text-stroke: 0;
    color: #ff4949;
    font-size: 45px;
}
.mmau-community-copy span.mmau-accent {
    font-size: 45px;
}
.mmau-tick-msg {
	position: absolute; inset: 0; display: flex; font-weight:700; align-items: center; justify-content: center; background: rgba(250,247,241,0.92);
	opacity: 0; pointer-events: none; transition: opacity .3s ease; font-family: var(--mmau-font-ui-sans); font-style: italic;
	font-size: clamp(16px, 2vw, 24px); color: var(--mmau-ink); text-align: center; padding: 0 20px;
}
@keyframes mmau-marq-l { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .mmau-marq { animation: none !important; } }

/* ---------- founders ---------- */
.mmau-founders-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(24px, 4vw, 54px); margin-top: clamp(36px, 5vh, 54px); max-width: 940px; }
.mmau-photo--founder { aspect-ratio: 4/5; background: #221F1B; }
.mmau-founder-meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-top: 18px; flex-wrap: wrap; }
.mmau-founder-name { font-weight: 800; font-size: clamp(21px, 2.4vw, 28px); letter-spacing: -0.02em; line-height: 38px; }
.mmau-founder-role {
   font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.26em;
    color: #FFF626;
    font-family: 'Open Sauce One';
}
.mmau-founder-socials { display: flex; gap: 9px; flex: none; }
.mmau-social-circle {
	width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(250,247,241,0.25); color: var(--mmau-cream);
	display: flex; align-items: center; justify-content: center; transition: all .25s ease; text-decoration: none;
}
.mmau-social-circle:hover { background: var(--mmau-yellow); border-color: var(--mmau-yellow); color: var(--mmau-ink); transform: translateY(-2px); }
.mmau-social-svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- CTA ---------- */
.mmau-cta-btn {
    background: #fff626;
    color: #000 !important;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 30px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    transition: transform .2s ease-out;
    margin-top: 22px;
}
.mmau-cta-email { font-size: 11px; letter-spacing: 0.12em; color: rgba(250,247,241,0.5); margin-top: 20px; }

/* ---------- custom cursor (page-scoped) ---------- */
#mmau-cur-dot { position: fixed; left: 0; top: 0; z-index: 100; width: 10px; height: 10px; border-radius: 50%; background: var(--mmau-ink); pointer-events: none; transform: translate(-50%,-50%); }
#mmau-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: var(--mmau-yellow); color: var(--mmau-ink);
	font-weight: 800; font-size: 12px; letter-spacing: 0.14em; transform: translate(-50%,-50%) scale(0);
	transition: transform .3s cubic-bezier(.2,.8,.25,1), background .3s; box-shadow: 0 10px 30px -10px rgba(27,25,22,0.35);
}
@media (max-width: 760px) { #mmau-cur-dot, #mmau-cur-chip { display: none; } }

/* ---------- scroll progress ---------- */
#mmau-progress-track { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 70; background: rgba(27,25,22,0.08); pointer-events: none; }
#mmau-progress { height: 100%; width: 0%; background: var(--mmau-yellow); transition: width .12s linear; }
.mmau-scroll-hint {
    display: none;
}