/* ==========================================================================
   About — Cinematic page template
   Same bright teal/cream/mustard/red palette as the rest of the site —
   the cinematic feel comes from the animations, glassmorphism, and
   parallax effects, not from a separate dark color scheme.
   ========================================================================== */

.cmf-cinematic-page {
	--ac-bg:      var(--cmf-color-teal-deep, #1F5B66);
	--ac-bg-soft: var(--cmf-color-teal, #2D7686);
	--ac-red:     var(--cmf-color-red, #E5262C);
	--ac-mustard: var(--cmf-color-mustard, #F2B705);
	--ac-cream:   var(--cmf-color-cream, #F3E6C8);
	--ac-teal:    var(--cmf-color-teal, #2D7686);

	background: var(--ac-bg);
	color: var(--ac-cream);
	overflow-x: hidden;
}

.cmf-cinematic-page * {
	box-sizing: border-box;
}

.cmf-cinematic-page h1,
.cmf-cinematic-page h2,
.cmf-cinematic-page h3 {
	font-family: var(--cmf-font-headline);
	color: var(--ac-cream);
	-webkit-text-stroke: 0;
	text-shadow: none;
}

.cmf-cinematic-page p,
.cmf-cinematic-page li {
	font-family: var(--cmf-font-body);
	font-weight: 400;
	color: rgba(243, 230, 200, 0.8);
	line-height: 1.7;
}

/* Scroll-reveal: hidden until .is-visible is added by IntersectionObserver */
.cmf-ac-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.cmf-ac-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.cmf-ac-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

.cmf-ac-label {
	font-family: var(--cmf-font-nav);
	font-weight: 600;
	font-size: 0.8rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ac-mustard);
	margin: 0 0 0.75rem;
}

.cmf-ac-heading {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 700;
	max-width: 24ch;
	margin: 0 0 1rem;
}

.cmf-ac-text {
	font-size: 1.05rem;
	max-width: 60ch;
}

.cmf-ac-center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.cmf-ac-hero {
	position: relative;
	min-height: 65vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	padding-top: calc(var(--cmf-header-height) + var(--cmf-space-lg));
	padding-bottom: var(--cmf-space-lg);
	background: radial-gradient(ellipse at 50% 30%, var(--ac-bg-soft) 0%, var(--ac-bg) 70%);
	background-size: cover;
	background-position: center;
}

.cmf-ac-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(31, 91, 102, 0.3), rgba(31, 91, 102, 0.85));
}

.cmf-ac-hero__glow {
	position: absolute;
	top: 40%;
	left: 50%;
	width: 900px;
	height: 900px;
	transform: translate(-50%, -50%);
	background: radial-gradient(circle, rgba(229, 38, 44, 0.25) 0%, transparent 65%);
	animation: cmf-ac-pulse 6s ease-in-out infinite;
}

@keyframes cmf-ac-pulse {
	0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
	50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}

.cmf-ac-floating-icons {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.cmf-ac-icon {
	position: absolute;
	color: var(--ac-mustard);
	opacity: 0.5;
	font-size: 1.6rem;
	animation: cmf-ac-float 8s ease-in-out infinite;
}

.cmf-ac-icon.i1 { top: 15%; left: 10%; animation-delay: 0s; }
.cmf-ac-icon.i2 { top: 25%; right: 12%; animation-delay: 1.5s; color: var(--ac-red); }
.cmf-ac-icon.i3 { bottom: 30%; left: 18%; animation-delay: 3s; }
.cmf-ac-icon.i4 { top: 60%; right: 8%; animation-delay: 2s; color: var(--ac-red); }
.cmf-ac-icon.i5 { bottom: 15%; right: 30%; animation-delay: 4s; }

@keyframes cmf-ac-float {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50%      { transform: translateY(-18px) rotate(10deg); }
}

.cmf-ac-hero__content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	padding: 0 var(--cmf-space-md, 2rem);
}

.cmf-ac-eyebrow {
	font-family: var(--cmf-font-nav);
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ac-mustard);
	margin-bottom: 1rem;
}

.cmf-ac-hero-title {
	font-size: clamp(2.4rem, 7vw, 5rem);
	font-weight: 800;
	line-height: 1.1;
	margin: 0 0 1.25rem;
}

.cmf-ac-accent {
	color: var(--ac-red);
}

.cmf-ac-hero-subtitle {
	font-size: 1.15rem;
	color: rgba(243, 230, 200, 0.75);
	max-width: 52ch;
	margin: 0 auto;
}

.cmf-ac-scroll-cue {
	margin: 3rem auto 0;
	width: 26px;
	height: 42px;
	border: 2px solid rgba(243, 230, 200, 0.4);
	border-radius: 14px;
	position: relative;
}

.cmf-ac-scroll-cue span {
	position: absolute;
	top: 8px;
	left: 50%;
	width: 4px;
	height: 8px;
	margin-left: -2px;
	background: var(--ac-mustard);
	border-radius: 2px;
	animation: cmf-ac-scroll-dot 1.6s ease-in-out infinite;
}

@keyframes cmf-ac-scroll-dot {
	0%   { opacity: 1; top: 8px; }
	100% { opacity: 0; top: 22px; }
}

/* ==========================================================================
   SPLIT SECTION
   ========================================================================== */
.cmf-ac-split {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	overflow: hidden;
}

.cmf-ac-split::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
	background-size: 6px 6px;
	pointer-events: none;
	z-index: 0;
}

.cmf-ac-split__content {
	position: relative;
	z-index: 1;
}

.cmf-ac-split__media {
	background-color: var(--ac-bg-soft);
	background-size: cover;
	background-position: center;
	height: 380px;
	align-self: center;
	border-radius: 16px;
	margin: var(--cmf-space-md, 2rem);
}

.cmf-ac-split__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: var(--cmf-space-lg, 4rem) var(--cmf-space-lg, 4rem);
}

/* ==========================================================================
   PARALLAX PULL-QUOTE BAND
   ========================================================================== */
.cmf-ac-parallax {
	position: relative;
	min-height: 50vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: linear-gradient(180deg, var(--ac-bg-soft), var(--ac-bg));
	background-attachment: fixed;
	overflow: hidden;
	padding: var(--cmf-space-lg, 4rem) var(--cmf-space-md, 2rem);
}

.cmf-ac-parallax__overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 50%, rgba(242, 183, 5, 0.08), transparent 70%);
}

.cmf-ac-quote {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
}

.cmf-ac-quote p {
	font-family: var(--cmf-font-headline);
	font-size: clamp(1.1rem, 2.2vw, 1.6rem);
	font-weight: 600;
	color: var(--ac-cream);
	line-height: 1.5;
	font-style: italic;
	max-width: 55ch;
	margin: 0 auto;
}

.cmf-ac-quote cite {
	display: block;
	margin-top: 1.5rem;
	font-family: var(--cmf-font-nav);
	font-style: normal;
	font-size: 0.9rem;
	color: var(--ac-mustard);
}

/* ==========================================================================
   GENERIC SECTION WRAPPER
   ========================================================================== */
.cmf-ac-section {
	position: relative;
	padding: var(--cmf-space-lg, 4rem) var(--cmf-space-md, 2rem);
	max-width: 1200px;
	margin: 0 auto;
	overflow: hidden;
}

.cmf-ac-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
	background-size: 6px 6px;
	pointer-events: none;
	z-index: 0;
}

.cmf-ac-section > * {
	position: relative;
	z-index: 1;
}

/* ==========================================================================
   TIMELINE
   ========================================================================== */
.cmf-ac-timeline {
	position: relative;
	max-width: 800px;
	margin: var(--cmf-space-lg, 4rem) auto 0;
	padding-left: 2rem;
	border-left: 2px solid rgba(242, 183, 5, 0.3);
}

.cmf-ac-timeline__item {
	position: relative;
	margin-bottom: var(--cmf-space-lg, 4rem);
}

.cmf-ac-timeline__dot {
	position: absolute;
	left: -2.5rem;
	top: 6px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--ac-red);
	box-shadow: 0 0 0 4px rgba(229, 38, 44, 0.25);
}

.cmf-ac-timeline__card h3 {
	font-size: 1.3rem;
	margin: 0 0 0.5rem;
}

.cmf-ac-timeline__thumb {
	margin-bottom: 0.75rem;
	border-radius: 10px;
	overflow: hidden;
	max-width: 280px;
}

/* ==========================================================================
   GLASSMORPHISM CARDS
   ========================================================================== */
.cmf-ac-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: var(--cmf-space-md, 2rem);
	margin-top: var(--cmf-space-lg, 4rem);
}

.cmf-ac-glass-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(243, 230, 200, 0.12);
	border-radius: 18px;
	padding: var(--cmf-space-md, 2rem);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	transition: transform 0.15s ease-out, border-color 0.3s ease, background 0.3s ease;
	will-change: transform;
}

.cmf-ac-glass-card:hover {
	border-color: var(--ac-mustard);
	background: rgba(255, 255, 255, 0.07);
}

.cmf-ac-card-icon {
	font-size: 2rem;
	display: block;
	margin-bottom: 0.75rem;
}

.cmf-ac-glass-card h3 {
	font-size: 1.15rem;
	margin: 0 0 0.5rem;
}

.cmf-ac-glass-card p {
	font-size: 0.95rem;
	margin: 0;
}

/* ==========================================================================
   STATS COUNTERS
   ========================================================================== */
.cmf-ac-stats {
	padding: var(--cmf-space-lg, 4rem) var(--cmf-space-md, 2rem);
	background: var(--ac-bg-soft);
}

.cmf-ac-stats__grid {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: var(--cmf-space-md, 2rem);
	text-align: center;
}

.cmf-ac-stat__number {
	display: block;
	font-family: var(--cmf-font-headline);
	font-weight: 800;
	font-size: clamp(2rem, 5vw, 3.2rem);
	color: var(--ac-mustard);
}

.cmf-ac-stat__label {
	display: block;
	margin-top: 0.5rem;
	font-family: var(--cmf-font-nav);
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(243, 230, 200, 0.7);
}

/* ==========================================================================
   ARTIST SPOTLIGHT
   ========================================================================== */
.cmf-ac-artist-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 180px));
	gap: var(--cmf-space-md, 2rem);
	margin-top: var(--cmf-space-lg, 4rem);
	justify-content: center;
}
.cmf-ac-artist-card {
	text-align: center;
}

.cmf-ac-artist-photo {
	width: 100%;
	max-width: 160px;
	aspect-ratio: 1;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	background-color: var(--ac-bg-soft);
	margin: 0 auto 1rem;
	border: 3px solid var(--ac-mustard);
	transition: transform 0.3s ease;
}

.cmf-ac-artist-card:hover .cmf-ac-artist-photo {
	transform: scale(1.05);
}

.cmf-ac-artist-card h3 {
	font-size: 1.1rem;
	margin: 0 0 0.25rem;
}

.cmf-ac-artist-card p {
	font-size: 0.85rem;
	color: var(--ac-mustard);
	margin: 0;
}

/* ==========================================================================
   EXPERIENCE LIST
   ========================================================================== */
.cmf-ac-experience-list {
	max-width: 700px;
	margin: var(--cmf-space-lg, 4rem) auto 0;
	list-style: none;
	padding: 0;
	display: grid;
	gap: 1rem;
}

.cmf-ac-experience-list li {
	position: relative;
	padding-left: 2rem;
	font-size: 1.05rem;
}

.cmf-ac-experience-list li::before {
	content: '✦';
	position: absolute;
	left: 0;
	color: var(--ac-red);
}

/* ==========================================================================
   MISSION / VISION GRID
   ========================================================================== */
.cmf-ac-mv-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--cmf-space-md, 2rem);
}

.cmf-ac-mv-grid .cmf-ac-glass-card p {
	font-size: 1rem;
}

/* ==========================================================================
   FINAL CTA — glowing button
   ========================================================================== */
.cmf-ac-final {
	position: relative;
	text-align: center;
	padding: var(--cmf-space-lg, 4rem) var(--cmf-space-md, 2rem);
	overflow: hidden;
}

.cmf-ac-final__glow {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 700px;
	height: 700px;
	transform: translate(-50%, -50%);
	background: radial-gradient(circle, rgba(229, 38, 44, 0.2), transparent 70%);
}

.cmf-ac-final-title {
	position: relative;
	z-index: 1;
	font-size: clamp(1.4rem, 3vw, 2rem);
	margin-bottom: 0.75rem;
}

.cmf-ac-final-text {
	position: relative;
	z-index: 1;
	max-width: 50ch;
	margin: 0 auto 2rem;
}

.cmf-ac-glow-button {
	position: relative;
	z-index: 1;
	display: inline-block;
	font-family: var(--cmf-font-nav);
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: 0.03em;
	color: var(--ac-cream);
	background: var(--ac-red);
	padding: 1em 2.5em;
	border-radius: 999px;
	box-shadow: 0 0 20px rgba(229, 38, 44, 0.6), 0 0 60px rgba(229, 38, 44, 0.25);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	animation: cmf-ac-glow 2.5s ease-in-out infinite;
}

.cmf-ac-glow-button:hover {
	color: var(--ac-cream);
	transform: translateY(-3px);
	box-shadow: 0 0 30px rgba(229, 38, 44, 0.8), 0 0 90px rgba(229, 38, 44, 0.4);
}

@keyframes cmf-ac-glow {
	0%, 100% { box-shadow: 0 0 20px rgba(229, 38, 44, 0.6), 0 0 60px rgba(229, 38, 44, 0.25); }
	50%      { box-shadow: 0 0 28px rgba(229, 38, 44, 0.8), 0 0 80px rgba(229, 38, 44, 0.35); }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
	.cmf-ac-split {
		grid-template-columns: 1fr;
	}

	.cmf-ac-split__media {
		background-attachment: scroll;
		min-height: 260px;
	}

	.cmf-ac-parallax {
		background-attachment: scroll;
	}
}
/* 3D tilt support — JS sets the transform inline on mousemove */
.cmf-ac-artist-photo,
.cmf-ac-timeline__card {
	transition: transform 0.15s ease-out;
	will-change: transform;
}

.cmf-ac-glass-card,
.cmf-ac-artist-card,
.cmf-ac-timeline__item {
	perspective: 1000px;
}
/* Extra glow accents so sections don't all look identical */
.cmf-ac-card-grid::before,
.cmf-ac-stats::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 500px;
	height: 500px;
	transform: translate(-50%, -50%);
	background: radial-gradient(circle, var(--ac-mustard) 0%, transparent 70%);
	opacity: 0.06;
	pointer-events: none;
	z-index: 0;
}

.cmf-ac-card-grid,
.cmf-ac-stats {
	position: relative;
}

.cmf-ac-card-grid > *,
.cmf-ac-stats > * {
	position: relative;
	z-index: 1;
}
/* Experience grid — replaces the old plain bullet list */
.cmf-ac-experience-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: var(--cmf-space-md, 2rem);
	max-width: 1100px;
	margin: var(--cmf-space-lg, 4rem) auto 0;
}

.cmf-ac-experience-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(243, 230, 200, 0.12);
	border-radius: 14px;
	overflow: hidden;
	transition: transform 0.2s ease, border-color 0.3s ease;
}

.cmf-ac-experience-card:hover {
	transform: translateY(-4px);
	border-color: var(--ac-mustard);
}

.cmf-ac-experience-photo {
	width: 100%;
	aspect-ratio: 4 / 3;
	background-size: cover;
	background-position: center;
	background-color: var(--ac-bg-soft);
}

.cmf-ac-experience-card p {
	margin: 0;
	padding: 1.25rem;
	font-size: 1rem;
	font-weight: 500;
	text-align: center;
}