/*
Theme Name: Uptown Fitness
Theme URI: http://localhost/uptownfitness
Description: Editorial dark fitness theme for Uptown Fitness.
Version: 3.0.0
Author: Uptown Fitness
Text Domain: uptown-fitness
*/

:root {
	--ink: #09090b;
	--ink-soft: #121214;
	--paper: #f3f0ec;
	--white: #fff;
	--purple: #f53c0f;
	--purple-dark: #3b008b;
	--violet: #f53c0f;
	--orange: #ff6933;
	--muted: #aba7b1;
	--line: rgba(255, 255, 255, .16);
	--shell: min(1180px, calc(100vw - 48px));
	--ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--ink);
	color: var(--white);
	font-family: "Manrope", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
p { margin: 0 0 1.35rem; }

h1, h2, h3, h4 {
	font-family: "Outfit", Arial, sans-serif;
	font-weight: 900;
	line-height: .92;
	letter-spacing: -.045em;
	margin: 0;
	text-wrap: balance;
	overflow-wrap: break-word;
	hyphens: manual;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	width: auto;
	height: auto;
	clip: auto;
	top: 12px;
	left: 12px;
	z-index: 9999;
	padding: 12px 18px;
	background: white;
	color: black;
}

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

.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 24px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .19em;
	text-transform: uppercase;
}

.eyebrow::before {
	content: "";
	width: 30px;
	height: 3px;
	background: currentColor;
}

.display-title {
	font-size: clamp(3rem, 7.5vw, 7.25rem);
	text-transform: uppercase;
	min-width: 0;
}

.display-title span { color: var(--purple); }

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
	min-height: 52px;
	padding: 12px 14px 12px 24px;
	border: 1px solid var(--purple);
	border-radius: 3px;
	background: var(--purple);
	color: white;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	transition: transform .35s var(--ease), background .35s, color .35s;
}

.button span {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	background: white;
	color: var(--ink);
	border-radius: 2px;
}

.button:hover { background: #7e22ff; transform: translateY(-3px); }
.button--light { background: white; border-color: white; color: var(--ink); }
.button--light span { background: var(--purple); color: white; }
.button--light:hover { background: var(--paper); color: var(--ink); }

.text-link {
	display: inline-flex;
	gap: 12px;
	align-items: center;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	border-bottom: 1px solid currentColor;
	padding-bottom: 4px;
}

.text-link span { transition: transform .3s var(--ease); }
.text-link:hover span { transform: translate(3px, -3px); }
.text-link--dark { color: var(--ink); }

/* Header */
.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 1000;
	border-bottom: 1px solid rgba(255,255,255,.13);
	background: linear-gradient(to bottom, rgba(9,9,11,.88), rgba(9,9,11,.28));
	backdrop-filter: blur(12px);
	transition: background .3s, transform .3s;
}

.site-header.is-scrolled { background: rgba(9,9,11,.96); }

.nav-shell {
	width: var(--shell);
	height: 78px;
	margin-inline: auto;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 38px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand img {
	display: block;
	height: 40px;
	width: auto;
	max-width: 180px;
}
.brand-mark {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	background: var(--purple);
	color: white;
	font: 900 21px/1 "Outfit";
	transform: skew(-9deg);
}
.brand-copy { font: 800 15px/1 "Outfit"; letter-spacing: -.02em; }
.brand-copy b { color: var(--violet); }

.primary-nav { justify-self: center; }
.primary-nav ul {
	display: flex;
	align-items: center;
	gap: clamp(16px, 2vw, 32px);
	list-style: none;
	padding: 0;
	margin: 0;
}
.primary-nav li { position: relative; }
.primary-nav a {
	display: block;
	padding: 28px 0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	white-space: nowrap;
}
.primary-nav a::after {
	content: "";
	position: absolute;
	inset: auto 0 20px;
	height: 2px;
	background: var(--purple);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .35s var(--ease);
}
.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after { transform: scaleX(1); transform-origin: left; }
.primary-nav .sub-menu { display: none; }

.nav-cta {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 10px 11px 10px 17px;
	background: var(--purple);
	border-radius: 3px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.nav-cta i {
	display: grid;
	place-items: center;
	width: 25px;
	height: 25px;
	background: white;
	color: black;
	font-style: normal;
}
.menu-toggle { display: none; }

/* Homepage hero */
.home-hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 130px 0 80px;
	background: #07070a;
}
.home-hero__photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
}
.home-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(7,7,10,.88) 0%, rgba(7,7,10,.45) 42%, rgba(7,7,10,.18) 100%);
	pointer-events: none;
}

.hero-grain {
	position: absolute;
	inset: 0;
	opacity: .18;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

.home-hero__content {
	width: var(--shell);
	margin: 0 auto;
	position: relative;
	z-index: 4;
}
.home-hero .hero-grain { z-index: 2; }
.home-hero .hero-card,
.home-hero .hero-stamp,
.home-hero .scroll-cue { z-index: 5; }

.home-hero h1 {
	max-width: min(860px, 100%);
	font-size: clamp(3.2rem, 8vw, 7rem);
	line-height: .9;
	text-transform: uppercase;
	overflow-wrap: normal;
	word-break: normal;
}
.home-hero h1 span { color: var(--violet); }
.hero-intro {
	max-width: 580px;
	margin-top: 30px;
	color: rgba(255,255,255,.77);
	font-size: clamp(1rem, 1.5vw, 1.17rem);
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.hero-proof { display: flex; gap: 46px; margin-top: 58px; }
.hero-proof div { display: flex; flex-direction: column; }
.hero-proof strong { font: 900 24px/1 "Outfit"; }
.hero-proof span { margin-top: 8px; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

.hero-card {
	position: absolute;
	z-index: 3;
	right: max(48px, calc((100vw - 1180px) / 2));
	bottom: 92px;
	width: 230px;
	min-height: 148px;
	padding: 22px 20px 18px;
	border-radius: 18px;
	background: linear-gradient(145deg, #1a1a1f 0%, #0b0b0e 70%);
	border: 1px solid rgba(255,255,255,.18);
	box-shadow: 0 24px 50px rgba(0,0,0,.45);
	transform: rotate(-6deg);
}
.hero-card__chip {
	width: 38px;
	height: 26px;
	margin-bottom: 18px;
	border-radius: 4px;
	background: linear-gradient(135deg, #d9c48a, #f3ead0);
}
.hero-card p {
	margin: 0;
	font-size: 9px;
	letter-spacing: .18em;
	color: rgba(255,255,255,.55);
}
.hero-card strong {
	display: block;
	margin: 8px 0 18px;
	font: 900 22px/1 "Outfit";
	letter-spacing: .04em;
}
.hero-card span,
.hero-card small {
	display: block;
	color: rgba(255,255,255,.7);
	font-size: 11px;
}

.hero-stamp {
	position: absolute;
	z-index: 2;
	right: 7vw;
	bottom: 64px;
	width: 150px;
	height: 150px;
	border: 1px solid rgba(255,255,255,.4);
	border-radius: 50%;
	display: grid;
	place-items: center;
	animation: spin 18s linear infinite;
}
.hero-stamp b { font: 900 42px/1 "Outfit"; transform: rotate(-8deg); }
.hero-stamp span { position: absolute; inset: 12px; font-size: 8px; letter-spacing: .15em; text-align: center; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-stamp b { animation: spin-reverse 18s linear infinite; }
@keyframes spin-reverse { to { transform: rotate(-360deg); } }
.scroll-cue {
	position: absolute;
	z-index: 2;
	right: 32px;
	top: 45%;
	display: flex;
	align-items: center;
	gap: 15px;
	writing-mode: vertical-rl;
	font-size: 9px;
	letter-spacing: .2em;
}

/* Home sections */
.intro-band { padding: 110px 0; background: var(--paper); color: var(--ink); }
.intro-grid { display: grid; grid-template-columns: 130px 1.2fr .7fr; gap: 50px; align-items: end; }
.section-index { align-self: start; font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.intro-copy { padding-bottom: 8px; }
.intro-copy p { font-size: 18px; line-height: 1.75; }

.split-showcase { min-height: 700px; display: grid; grid-template-columns: .8fr 1.2fr; background: var(--purple-dark); }
.split-showcase__copy { display: flex; flex-direction: column; justify-content: center; padding: 70px max(48px, calc((100vw - 1180px)/2)); }
.split-showcase__copy h2 { max-width: 530px; font-size: clamp(3rem, 5.5vw, 6rem); text-transform: uppercase; }
.split-showcase__copy p:not(.eyebrow) { max-width: 480px; margin: 28px 0; color: rgba(255,255,255,.72); }
.split-showcase__copy .button { align-self: flex-start; }
.split-showcase__image { position: relative; margin: 0; min-height: 560px; overflow: hidden; }
.split-showcase__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.split-showcase__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(59,0,139,.4), transparent 45%); }
.vertical-label { position: absolute; z-index: 1; right: 24px; top: 30px; writing-mode: vertical-rl; font-size: 9px; letter-spacing: .25em; }

.discipline-section { padding: 130px 0; background: var(--ink); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 60px; margin-bottom: 66px; }
.section-heading__copy { max-width: 470px; color: var(--muted); font-size: 17px; }
.discipline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.discipline-card {
	position: relative;
	min-height: 500px;
	display: flex;
	flex-direction: column;
	justify-content: end;
	padding: 28px;
	overflow: hidden;
	background: #0b0b10;
	transition: flex .5s var(--ease);
}
.discipline-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: saturate(.85);
	transform: scale(1.04);
	transition: transform .7s var(--ease), filter .45s;
}
.discipline-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(8,8,10,.96), rgba(8,8,10,.18) 72%);
}
.discipline-card::before { content: ""; position: absolute; inset: 0; z-index: 1; background: var(--purple); opacity: 0; transition: opacity .45s; }
.discipline-card > * { position: relative; z-index: 2; }
.discipline-card:hover img { transform: scale(1.1); filter: saturate(1.1); }
.discipline-card > span { position: absolute; top: 24px; left: 24px; font-size: 10px; font-weight: 800; }
.discipline-card h3 { font-size: clamp(1.5rem, 2vw, 2.2rem); letter-spacing: -.03em; }
.discipline-card p { max-height: 0; margin: 0; overflow: hidden; opacity: 0; color: rgba(255,255,255,.78); transition: all .45s var(--ease); }
.discipline-card i { position: absolute; right: 24px; bottom: 25px; font-style: normal; font-size: 22px; }
.discipline-card:hover::before { opacity: .76; }
.discipline-card:hover p { max-height: 100px; margin-top: 15px; opacity: 1; }

.method-section { position: relative; padding: 145px 0; background: var(--paper); color: var(--ink); overflow: hidden; }
.method-number { position: absolute; left: -4vw; bottom: -10vw; color: rgba(109,0,255,.09); font: 900 clamp(13rem, 31vw, 35rem)/.7 "Outfit"; letter-spacing: -.09em; }
.method-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.intro-grid > *,
.method-grid > *,
.app-grid > *,
.membership-grid > * { min-width: 0; }
.method-list { border-top: 1px solid rgba(9,9,11,.25); }
.method-item { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid rgba(9,9,11,.25); }
.method-item > span { color: var(--purple); font: 800 12px/1 "Manrope"; }
.method-item h3 { font-size: 28px; }
.method-item p { max-width: 460px; margin: 9px 0 0; color: #5b5862; }

.app-section { padding: 130px 0; background: #17002f; overflow: hidden; }
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.app-copy > p:not(.eyebrow) { max-width: 530px; color: rgba(255,255,255,.7); }
.check-list { list-style: none; padding: 0; margin: 30px 0; }
.check-list li { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.check-list li::before { content: "✓"; color: var(--violet); margin-right: 13px; }
.app-visual { min-height: 620px; position: relative; }
.app-visual::before { content: ""; position: absolute; width: 550px; height: 550px; background: var(--purple); filter: blur(100px); opacity: .25; border-radius: 50%; }
.app-visual__photo {
	position: absolute;
	inset: 0 40px 0 0;
	width: calc(100% - 20px);
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 2px;
	filter: saturate(.9) brightness(.88);
}
.phone { position: absolute; z-index: 2; width: 270px; height: 550px; padding: 10px; background: #28262d; border: 1px solid #57535f; border-radius: 36px; box-shadow: 0 40px 90px rgba(0,0,0,.5); }
.phone--back { left: 30px; top: 70px; transform: rotate(-8deg); opacity: .65; }
.phone--front { right: 30px; top: 0; transform: rotate(6deg); }
.phone-screen { height: 100%; display: flex; flex-direction: column; padding: 32px 22px; border-radius: 28px; background: linear-gradient(160deg, #200047, #07070b 65%); }
.phone-screen span { color: var(--violet); font-size: 10px; letter-spacing: .18em; }
.phone-screen b { margin-top: auto; font: 900 50px/.9 "Outfit"; text-transform: uppercase; }
.phone-screen small { margin-top: 18px; color: #bdb9c3; }
.phone-screen i { display: grid; place-items: center; width: 80px; height: 80px; margin: 30px auto 20px; background: var(--purple); border-radius: 50%; font: 900 36px/1 "Outfit"; }

.numbers-section { padding: 130px 0; background: var(--purple); }
.section-heading--white p { max-width: 420px; color: rgba(255,255,255,.75); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.35); border-left: 1px solid rgba(255,255,255,.35); }
.number-card { min-height: 230px; display: flex; flex-direction: column; justify-content: end; padding: 25px; border-right: 1px solid rgba(255,255,255,.35); border-bottom: 1px solid rgba(255,255,255,.35); }
.number-card strong { font: 900 clamp(3.2rem, 5vw, 5.7rem)/1 "Outfit"; letter-spacing: -.06em; }
.number-card span { margin-top: 10px; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.map-section { padding: 130px 0; background: #0c0614; }
.map-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 80px; align-items: center; }
.map-grid p:not(.eyebrow) { max-width: 480px; color: rgba(255,255,255,.7); }
.map-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 36px 0 32px; }
.map-stats div { padding-top: 16px; border-top: 1px solid var(--line); }
.map-stats strong { display: block; font: 900 42px/1 "Outfit"; }
.map-stats span { color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.map-photo {
	position: relative;
	margin: 0;
	min-height: 520px;
	overflow: hidden;
	background: #12061f;
}
.map-photo > img {
	width: 100%;
	height: 100%;
	min-height: 520px;
	object-fit: cover;
	display: block;
	filter: saturate(.85) brightness(.78);
}
.map-photo__badge {
	position: absolute;
	left: 18px;
	bottom: 18px;
	padding: 10px 14px;
	background: rgba(7, 7, 10, .78);
	backdrop-filter: blur(8px);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.coach-strip { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 640px; background: #07070a; }
.coach-strip__media { position: relative; margin: 0; min-height: 640px; overflow: hidden; }
.coach-strip__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.coach-strip__copy { display: flex; flex-direction: column; justify-content: center; padding: 80px max(48px, calc((100vw - 1180px) / 2)) 80px 70px; }
.coach-strip__copy h2 { font-size: clamp(3rem, 6vw, 6.4rem); text-transform: uppercase; }
.coach-strip__copy p:not(.eyebrow) { max-width: 460px; color: rgba(255,255,255,.72); }
.coach-strip__copy .button { align-self: flex-start; margin-top: 10px; }

.club-feature { position: relative; min-height: 750px; display: grid; place-items: center; overflow: hidden; background: #07070a; }
.club-feature__photo { position: absolute; inset: 0; }
.club-feature__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,7,9,.92), rgba(7,7,9,.22) 70%); }
.club-feature__content { position: relative; width: var(--shell); }
.club-feature h2 { max-width: 730px; font-size: clamp(4rem, 8vw, 8rem); text-transform: uppercase; }
.club-feature p:not(.eyebrow) { max-width: 500px; margin: 28px 0; color: rgba(255,255,255,.75); }

.membership-teaser { padding: 130px 0; background: var(--paper); color: var(--ink); }
.membership-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; background: white; overflow: hidden; }
.membership-image { position: relative; margin: 0; min-height: 620px; overflow: hidden; }
.membership-image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(.9) contrast(1.05);
}
.membership-copy { padding: clamp(45px, 7vw, 90px); display: flex; flex-direction: column; justify-content: center; }
.membership-copy > p:not(.eyebrow) { color: #625f68; font-size: 17px; }
.price-line { display: flex; align-items: baseline; gap: 8px; margin: 22px 0 28px; }
.price-line span, .price-line small { color: #6b6870; font-size: 12px; text-transform: uppercase; }
.price-line strong { color: var(--purple); font: 900 54px/1 "Outfit"; }
.membership-copy .button { align-self: flex-start; }

.journal-section { padding: 130px 0; background: var(--paper); color: var(--ink); border-top: 1px solid #cfcbc5; }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.journal-card__image { margin: 0; aspect-ratio: 4/3; overflow: hidden; filter: saturate(.75); transition: filter .4s, transform .5s var(--ease); }
.journal-card:hover .journal-card__image { filter: saturate(1.15); transform: translateY(-5px); }
.journal-card > span { display: block; margin: 22px 0 12px; color: #6c6872; font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.journal-card h3 { font-size: clamp(1.6rem, 2.4vw, 2.3rem); line-height: 1; }
.journal-card p { margin-top: 16px; color: #6c6872; }
.journal-card i { font-style: normal; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.final-cta { padding: 130px 0; text-align: center; background: var(--purple-dark); }
.final-cta h2 { font-size: clamp(4.5rem, 11vw, 11rem); text-transform: uppercase; }
.final-cta h2 span { color: var(--violet); }
.final-cta p:not(.eyebrow) { max-width: 620px; margin: 25px auto 32px; color: rgba(255,255,255,.74); }
.final-cta .eyebrow { justify-content: center; }

/* Inner pages */
.page-hero {
	position: relative;
	min-height: 610px;
	display: flex;
	align-items: end;
	padding: 160px 0 80px;
	overflow: hidden;
	background: #07070a;
}
.page-hero__photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.page-hero__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(7,7,10,.88), rgba(7,7,10,.28) 70%), linear-gradient(transparent 40%, #07070a);
}
.page-hero__content { position: relative; z-index: 1; width: var(--shell); margin-inline: auto; }
.page-hero h1 { max-width: 1000px; font-size: clamp(4rem, 9vw, 9rem); text-transform: uppercase; }
.page-hero__lead { max-width: 620px; margin-top: 26px; color: rgba(255,255,255,.75); font-size: 18px; }
.breadcrumb { margin-bottom: 25px; color: rgba(255,255,255,.65); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.breadcrumb a { color: var(--violet); }

.page-content { padding: 100px 0 130px; background: var(--paper); color: var(--ink); }
.prose { width: min(900px, calc(100vw - 48px)); margin-inline: auto; }
.prose > p:first-child { font-size: clamp(1.35rem, 2.4vw, 2rem); line-height: 1.45; color: #28242d; }
.prose h2 { margin: 75px 0 24px; font-size: clamp(2.6rem, 5vw, 5rem); text-transform: uppercase; }
.prose h3 { margin: 42px 0 16px; font-size: clamp(1.6rem, 3vw, 2.7rem); }
.prose p, .prose li { color: #5e5a64; font-size: 17px; line-height: 1.8; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li { margin-bottom: 10px; }
.prose a { color: var(--purple); text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote { margin: 60px 0; padding: 40px; border-left: 5px solid var(--purple); background: white; font: 800 clamp(1.5rem,3vw,2.4rem)/1.25 "Outfit"; }
.prose blockquote p { color: var(--ink); font: inherit; }
.prose .wp-block-button__link { background: var(--purple); border-radius: 2px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.content-figure {
	margin: 40px -8vw 50px;
	max-width: none;
}
.content-figure img,
.content-gallery img,
.archive-card__image img,
.journal-card__image img,
.membership-image img,
.coach-strip__media img,
.club-feature__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.content-figure img { aspect-ratio: 16/9; }
.content-figure figcaption {
	margin-top: 12px;
	color: #7a7580;
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.content-gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin: 50px 0 10px;
}
.content-gallery figure { margin: 0; }
.content-gallery img { aspect-ratio: 4/3; }

.feature-list,
.wp-block-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 42px 0; }
.feature-list > div,
.wp-block-column { padding: 28px; background: white; border-top: 4px solid var(--purple); }
.feature-list h3,
.wp-block-column h3 { margin-top: 0; font-size: 24px; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin: 55px 0; border: 1px solid #c9c4cd; }
.metric-grid div { padding: 30px 20px; border-right: 1px solid #c9c4cd; }
.metric-grid div:last-child { border-right: 0; }
.metric-grid strong { display: block; color: var(--purple); font: 900 46px/1 "Outfit"; }
.metric-grid span { font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.callout { margin: 70px 0 0; padding: clamp(35px,5vw,65px); background: var(--purple); color: white; }
.callout h2 { margin: 0 0 20px; color: white; }
.callout p { color: rgba(255,255,255,.78); }
.callout a { color: white; }

.contact-form-wrap { margin-top: 70px; padding: 48px; background: white; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input,
.contact-form select,
.contact-form textarea { width: 100%; padding: 14px 16px; border: 1px solid #d7d2db; background: #faf8f6; color: var(--ink); }
.form-wide { grid-column: 1 / -1; }
.form-hp { position: absolute; left: -9999px; }
.form-success { padding: 14px 16px; background: #e8f8ef; color: #146c2e; }

.archive-main { padding: 160px 0 120px; background: var(--paper); color: var(--ink); }
.archive-head { width: var(--shell); margin: 0 auto 70px; }
.archive-head h1 { font-size: clamp(4rem, 9vw, 9rem); text-transform: uppercase; }
.archive-head p { max-width: 630px; margin-top: 24px; color: #625e68; font-size: 18px; }
.archive-grid { width: var(--shell); margin-inline: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.archive-card { background: white; }
.archive-card__image { margin: 0; aspect-ratio: 4/3; overflow: hidden; }
.archive-card__image img { transition: transform .5s var(--ease); }
.archive-card:hover .archive-card__image img { transform: scale(1.04); }
.archive-card__body { padding: 27px; }
.archive-card__body > span { color: var(--purple); font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.archive-card h2 { margin-top: 10px; font-size: 30px; }
.archive-card p { color: #67636d; }
.archive-card i { color: var(--purple); font-style: normal; font-size: 11px; font-weight: 800; text-transform: uppercase; }

/* Footer */
.site-footer { background: #050506; overflow: hidden; }
.footer-marquee { padding: 21px 0; background: var(--purple); white-space: nowrap; overflow: hidden; }
.footer-marquee div { font: 900 clamp(2.7rem,6vw,6rem)/.9 "Outfit"; letter-spacing: -.04em; animation: marquee 22s linear infinite; }
.footer-marquee span { color: transparent; -webkit-text-stroke: 1px white; }
@keyframes marquee { to { transform: translateX(-50%); } }
.footer-shell { width: var(--shell); margin-inline: auto; padding: 95px 0 35px; }
.footer-lead { display: grid; grid-template-columns: .5fr 1.4fr auto; align-items: end; gap: 50px; padding-bottom: 80px; border-bottom: 1px solid var(--line); }
.brand--footer { align-self: start; }
.footer-lead h2 { font-size: clamp(3.2rem,6.4vw,6.8rem); text-transform: uppercase; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 50px; padding: 60px 0; }
.footer-grid > div { display: flex; flex-direction: column; gap: 10px; }
.footer-grid h3 { margin-bottom: 14px; color: var(--violet); font-size: 12px; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid a, .footer-grid span, .footer-grid p { color: #9b97a2; font-size: 13px; }
.footer-grid a:hover { color: white; }
.footer-form { display: grid; grid-template-columns: 1fr 44px; border-bottom: 1px solid white; }
.footer-form input { min-width: 0; padding: 11px 0; border: 0; outline: 0; background: transparent; color: white; }
.footer-form button { border: 0; background: transparent; color: var(--violet); cursor: pointer; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 30px; border-top: 1px solid var(--line); color: #77737d; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom div { display: flex; gap: 22px; }

/* Motion */
.reveal {
	opacity: 0;
	transform: translateY(35px);
	transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.image-reveal { clip-path: none; }
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
	.reveal { opacity: 1; transform: none; }
	.image-reveal { clip-path: none; }
}

/* Responsive */
@media (max-width: 980px) {
	:root { --shell: min(100% - 36px, 900px); }
	.nav-shell { grid-template-columns: auto auto; justify-content: space-between; height: 68px; }
	.nav-cta { display: none; }
	.menu-toggle {
		display: flex;
		width: 42px;
		height: 42px;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 5px;
		border: 0;
		background: var(--purple);
		cursor: pointer;
	}
	.menu-toggle span:not(.screen-reader-text) { width: 18px; height: 2px; background: white; transition: transform .3s, opacity .3s; }
	.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
	.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
	.primary-nav {
		position: fixed;
		inset: 68px 0 auto;
		width: 100%;
		height: calc(100vh - 68px);
		padding: 50px 24px;
		justify-self: stretch;
		background: rgba(5,5,6,.98);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-15px);
		transition: all .35s var(--ease);
	}
	.primary-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
	.primary-nav ul { align-items: flex-start; flex-direction: column; gap: 0; }
	.primary-nav li { width: 100%; border-bottom: 1px solid var(--line); }
	.primary-nav a { padding: 18px 0; font: 900 28px/1 "Outfit"; letter-spacing: 0; white-space: normal; }
	.hero-card { right: 24px; bottom: 28px; width: 180px; transform: rotate(-4deg); }
	.map-grid, .coach-strip { grid-template-columns: 1fr; gap: 40px; }
	.coach-strip__copy { padding: 60px 24px; }
	.contact-form { grid-template-columns: 1fr; }
	.home-hero { min-height: 100svh; padding: 110px 0 70px; }
	.hero-stamp { width: 110px; height: 110px; right: 24px; }
	.intro-grid { grid-template-columns: 1fr; gap: 25px; }
	.section-index { display: none; }
	.split-showcase { grid-template-columns: 1fr; }
	.split-showcase__copy { padding: 90px 24px; }
	.discipline-grid { grid-template-columns: repeat(2,1fr); }
	.method-grid, .app-grid, .membership-grid { grid-template-columns: 1fr; gap: 60px; }
	.numbers-grid { grid-template-columns: repeat(2,1fr); }
	.journal-grid, .archive-grid { grid-template-columns: repeat(2,1fr); }
	.feature-list, .wp-block-columns { grid-template-columns: 1fr 1fr; }
	.metric-grid { grid-template-columns: repeat(2,1fr); }
	.footer-lead { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
	:root { --shell: calc(100% - 28px); }
	.home-hero { min-height: 100svh; align-items: end; padding: 100px 0 70px; background-position: 62% center; }
	.home-hero__content { margin-top: 0; }
	.home-hero h1 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
	.hero-intro { font-size: 15px; }
	.hero-actions, .hero-proof { align-items: flex-start; flex-direction: column; gap: 20px; }
	.hero-proof { flex-direction: row; gap: 25px; margin-top: 36px; }
	.hero-stamp, .scroll-cue, .hero-card { display: none; }
	.intro-band, .discipline-section, .method-section, .app-section, .numbers-section, .membership-teaser, .journal-section, .final-cta { padding: 80px 0; }
	.display-title { font-size: clamp(2.8rem, 14vw, 4.5rem); }
	.section-heading { align-items: flex-start; flex-direction: column; gap: 25px; margin-bottom: 40px; }
	.discipline-grid { grid-template-columns: 1fr; }
	.discipline-card { min-height: 390px; }
	.method-grid { gap: 45px; }
	.method-item { grid-template-columns: 45px 1fr; }
	.app-visual { min-height: 460px; }
	.phone { width: 205px; height: 420px; }
	.phone--back { left: 0; }
	.phone--front { right: 0; }
	.phone-screen b { font-size: 35px; }
	.numbers-grid, .journal-grid, .archive-grid, .feature-list, .wp-block-columns, .metric-grid { grid-template-columns: 1fr; }
	.number-card { min-height: 180px; }
	.club-feature { min-height: 650px; }
	.club-feature h2 { font-size: 16vw; }
	.membership-grid { min-height: 0; }
	.membership-image { min-height: 430px; }
	.membership-copy { padding: 42px 25px; }
	.page-hero { min-height: 520px; }
	.page-hero h1 { font-size: 15vw; }
	.content-figure { margin-left: 0; margin-right: 0; }
	.content-gallery { grid-template-columns: 1fr; }
	.page-content { padding: 70px 0 90px; }
	.prose h2 { margin-top: 55px; }
	.metric-grid div { border-right: 0; border-bottom: 1px solid #c9c4cd; }
	.footer-grid { grid-template-columns: 1fr; }
	.footer-lead { padding-bottom: 55px; }
	.footer-bottom { flex-direction: column; gap: 15px; }
}
