/* =========================================================
   Million Little Pieces — brand tokens + inner-page system
   ---------------------------------------------------------
   Palette and type are taken verbatim from the "Visual
   Identity Essentials" brand sheet. Treat these values as
   canonical: do not hand-tweak them per page.
   ========================================================= */

:root {
	/* 1. Colour palette — exact brand sheet values */
	--mlp-cobalt:    #12388F;  /* Cobalt Blue   */
	--mlp-electric:  #2F8CFF;  /* Electric Blue */
	--mlp-sky:       #BFE4FF;  /* Sky Blue      */
	--mlp-aqua:      #9FEEE6;  /* Aqua Mist     */
	--mlp-sun:       #F4D54E;  /* Sun Yellow    */
	--mlp-ivory:     #F8F7F2;  /* Soft Ivory    */
	--mlp-limestone: #E7E1D8;  /* Limestone     */
	--mlp-wood:      #CA9A6C;  /* Raw/Warm Wood */

	/* Working neutrals + states derived from the sheet */
	--mlp-cobalt-dark: #0D2A6B;
	--mlp-ink:   #1E1B16;
	--mlp-body:  #4A443C;
	--mlp-muted: #8A8478;
	--mlp-white: #FFFFFF;
	--mlp-rule:  rgba(30,27,22,0.12);

	/* 2. Typography */
	--mlp-font-display: 'Austin Cyr', Georgia, 'Times New Roman', serif;
	--mlp-font-body:    'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--mlp-font-type:    'Special Elite', 'Courier New', Courier, monospace;
	--mlp-font-hand:    'Caveat', 'Segoe Script', cursive;

	--mlp-page-max: 1240px;
	--mlp-pad: 64px;
}

/* -------------------- Page shell -------------------- */
.mlp-page {
	position: relative;
	min-height: 100vh;
	background-color: var(--mlp-ivory);
	background-image:
		url('../images/paper-corner.webp'),
		url('../images/paper-texture.jpg');
	background-size: clamp(200px, 63vw, 1200px) auto, cover;
	background-position: left top, center;
	background-repeat: no-repeat, no-repeat;
}
.mlp-page-inner {
	max-width: var(--mlp-page-max);
	margin: 0 auto;
	padding: 0 var(--mlp-pad);
}

/* -------------------- Site header --------------------
   Deliberately NOT rendered on the front page: the home
   hero is a single full-height statement with no nav. */
.mlp-site-header {
	position: relative;
	z-index: 20;
	padding: 26px 0 18px;
}
.mlp-site-header-inner {
	max-width: var(--mlp-page-max);
	margin: 0 auto;
	padding: 0 var(--mlp-pad);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.mlp-header-logo img { width: 92px; height: auto; }

.mlp-nav { display: flex; align-items: center; gap: 38px; }
.mlp-nav a {
	font-family: var(--mlp-font-body);
	font-size: 14px;
	font-weight: 500;
	color: var(--mlp-ink);
	position: relative;
	padding-bottom: 4px;
	transition: color 0.18s ease;
}
.mlp-nav a:hover { color: var(--mlp-cobalt); }
.mlp-nav a.is-current { color: var(--mlp-cobalt); font-weight: 600; }
.mlp-nav a.is-current::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 2px;
	background: var(--mlp-cobalt);
	border-radius: 2px;
}

.mlp-nav-toggle {
	display: none;
	width: 42px; height: 42px;
	align-items: center; justify-content: center;
	border: 1px solid var(--mlp-rule);
	border-radius: 8px;
	background: rgba(255,255,255,0.6);
	color: var(--mlp-ink);
}
.mlp-nav-toggle span {
	display: block; width: 18px; height: 2px;
	background: currentColor; position: relative;
}
.mlp-nav-toggle span::before,
.mlp-nav-toggle span::after {
	content: ""; position: absolute; left: 0;
	width: 18px; height: 2px; background: currentColor;
}
.mlp-nav-toggle span::before { top: -6px; }
.mlp-nav-toggle span::after  { top: 6px; }

/* -------------------- Shared type -------------------- */
.mlp-eyebrow {
	font-family: var(--mlp-font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--mlp-electric);
	margin: 0 0 14px;
}
.mlp-eyebrow--wood { color: var(--mlp-wood); }

.mlp-page-title {
	font-family: var(--mlp-font-display);
	font-weight: 400;
	font-size: clamp(42px, 6vw, 84px);
	line-height: 1.02;
	color: var(--mlp-cobalt);
	margin: 0 0 18px;
	text-wrap: balance;
}
.mlp-page-title--ink { color: var(--mlp-ink); }

.mlp-lede {
	font-family: var(--mlp-font-body);
	font-size: 17px;
	line-height: 1.6;
	color: var(--mlp-body);
	margin: 0 0 12px;
	max-width: 52ch;
}
.mlp-section-title {
	font-family: var(--mlp-font-display);
	font-weight: 400;
	font-size: clamp(30px, 3.6vw, 46px);
	line-height: 1.1;
	color: var(--mlp-cobalt);
	margin: 0 0 18px;
}
.mlp-script {
	font-family: var(--mlp-font-hand);
	font-size: 26px;
	color: var(--mlp-cobalt);
	line-height: 1.15;
}

/* -------------------- Buttons -------------------- */
.mlp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--mlp-font-body);
	font-size: 14px;
	font-weight: 500;
	padding: 15px 26px;
	border-radius: 4px;
	border: 1.5px solid transparent;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease;
	cursor: pointer;
	text-align: center;
}
.mlp-btn-primary {
	background: var(--mlp-cobalt);
	color: var(--mlp-white);
}
.mlp-btn-primary:hover, .mlp-btn-primary:focus-visible {
	background: var(--mlp-cobalt-dark);
	color: var(--mlp-white);
}
.mlp-btn-outline {
	background: transparent;
	color: var(--mlp-cobalt);
	border-color: var(--mlp-cobalt);
}
.mlp-btn-outline:hover, .mlp-btn-outline:focus-visible {
	background: var(--mlp-cobalt);
	color: var(--mlp-white);
}
.mlp-btn-arrow { transition: transform .2s ease; }
.mlp-btn:hover .mlp-btn-arrow { transform: translateX(3px); }
/* -------------------- Page hero -------------------- */
.mlp-hero-band {
	position: relative;
	padding: 46px 0 40px;
}
.mlp-hero-band-inner {
	max-width: var(--mlp-page-max);
	margin: 0 auto;
	padding: 0 var(--mlp-pad);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
	gap: 40px;
	align-items: center;
}
.mlp-hero-band--narrow .mlp-hero-band-inner { grid-template-columns: minmax(0, 1fr); }

/* Decorative torn-paper collage cluster. Placeholder built from
   brand colours; swap the element for exported Figma artwork by
   dropping an <img> in with the same class. */
.mlp-collage {
	position: relative;
	min-height: 210px;
	justify-self: end;
	width: 100%;
	max-width: 460px;
}
/* Until the artwork is dropped in, the placeholder must not hold
   open any space — on mobile it stacks above the content and pushes
   everything down. It reappears automatically once it has content. */
.mlp-collage:empty {
	display: none;
}
.mlp-collage img { width: 100%; height: auto; display: block; }
.mlp-collage-shape {
	position: absolute;
	border-radius: 3px;
}

/* -------------------- Filter pills -------------------- */
.mlp-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 8px 0 34px;
}
.mlp-filter {
	font-family: var(--mlp-font-body);
	font-size: 14px;
	font-weight: 500;
	padding: 12px 26px;
	border-radius: 999px;
	border: 1.5px solid var(--mlp-rule);
	background: rgba(255,255,255,0.72);
	color: var(--mlp-body);
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.mlp-filter:hover { border-color: var(--mlp-cobalt); color: var(--mlp-cobalt); }
.mlp-filter.is-active {
	background: var(--mlp-cobalt);
	border-color: var(--mlp-cobalt);
	color: var(--mlp-white);
}

/* -------------------- Event cards -------------------- */
.mlp-events-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	padding-bottom: 48px;
}
.mlp-event-card {
	display: flex;
	flex-direction: column;
	background: var(--mlp-white);
	border: 1px solid var(--mlp-rule);
	overflow: hidden;
}
.mlp-event-card[hidden] { display: none; }

.mlp-event-media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--mlp-limestone);
}
.mlp-event-media img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
}
.mlp-event-tag {
	position: absolute;
	left: 16px; bottom: 16px;
	background: var(--mlp-white);
	color: var(--mlp-ink);
	font-family: var(--mlp-font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 8px 14px;
}
.mlp-event-body {
	padding: 22px 22px 24px;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}
.mlp-event-meta {
	font-family: var(--mlp-font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mlp-wood);
	margin: 0 0 10px;
}
.mlp-event-title {
	font-family: var(--mlp-font-display);
	font-weight: 400;
	font-size: 27px;
	line-height: 1.15;
	color: var(--mlp-ink);
	margin: 0 0 12px;
}
.mlp-event-title a { color: inherit; }
.mlp-event-title a:hover { color: var(--mlp-cobalt); }
.mlp-event-excerpt {
	font-family: var(--mlp-font-body);
	font-size: 14px;
	line-height: 1.62;
	color: var(--mlp-body);
	margin: 0 0 18px;
}
.mlp-event-price {
	font-family: var(--mlp-font-display);
	font-size: 22px;
	color: var(--mlp-ink);
	margin: auto 0 16px;
}
.mlp-event-card .mlp-btn { width: 100%; }

.mlp-list-note {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 22px 0 60px;
	border-top: 1px solid var(--mlp-rule);
}
.mlp-list-note p {
	font-family: var(--mlp-font-body);
	font-size: 13px;
	color: var(--mlp-muted);
	margin: 0;
}
.mlp-list-note .mlp-script { display: inline-flex; align-items: center; gap: 14px; }
.mlp-list-note .mlp-script::after {
	content: "";
	width: 64px; height: 1px;
	background: var(--mlp-rule);
	display: inline-block;
}

.mlp-empty {
	grid-column: 1 / -1;
	padding: 48px 0 60px;
	text-align: center;
	font-family: var(--mlp-font-body);
	color: var(--mlp-muted);
}
/* -------------------- Site footer -------------------- */
.mlp-site-footer {
	position: relative;
	border-top: 1px solid var(--mlp-rule);
	padding: 40px 0 54px;
}
.mlp-site-footer-inner {
	max-width: var(--mlp-page-max);
	margin: 0 auto;
	padding: 0 var(--mlp-pad);
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 34px;
	align-items: start;
}
.mlp-footer-brand img { width: 108px; height: auto; margin-bottom: 14px; }
.mlp-footer-tagline {
	font-family: var(--mlp-font-body);
	font-size: 10.5px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--mlp-muted);
	line-height: 1.7;
	margin: 0;
}
.mlp-footer-col h3 {
	font-family: var(--mlp-font-body);
	font-size: 13px;
	font-weight: 600;
	color: var(--mlp-cobalt);
	margin: 0 0 12px;
}
.mlp-footer-col ul { list-style: none; margin: 0; padding: 0; }
.mlp-footer-col li { margin-bottom: 7px; }
.mlp-footer-col a {
	font-family: var(--mlp-font-body);
	font-size: 14px;
	color: var(--mlp-body);
}
.mlp-footer-col a:hover { color: var(--mlp-cobalt); }
.mlp-footer-sign { justify-self: end; text-align: right; }
.mlp-footer-sign .mlp-script { font-size: 27px; display: block; }

/* Footer social row + direct contact details */
.mlp-footer-social {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 14px;
}
.mlp-footer-social a {
	width: 34px; height: 34px;
	border-radius: 50%;
	border: 1.5px solid var(--mlp-ink);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--mlp-ink);
	transition: background-color .2s ease, color .2s ease;
}
.mlp-footer-social a:hover,
.mlp-footer-social a:focus-visible {
	background: var(--mlp-ink);
	color: var(--mlp-ivory);
}
.mlp-footer-social svg { width: 15px; height: 15px; }
.mlp-footer-contact { margin: 0; }
.mlp-footer-contact a,
.mlp-footer-contact span {
	display: block;
	font-family: var(--mlp-font-body);
	font-size: 14px;
	color: var(--mlp-body);
	margin-bottom: 6px;
}
.mlp-footer-contact a:hover { color: var(--mlp-cobalt); }

/* -------------------- CTA band -------------------- */
.mlp-cta-band {
	position: relative;
	background: rgba(255,255,255,0.66);
	border: 1px solid var(--mlp-rule);
	padding: 30px 36px;
	margin: 12px 0 56px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 28px;
	align-items: center;
}
.mlp-cta-band h2 {
	font-family: var(--mlp-font-display);
	font-weight: 400;
	font-size: clamp(26px, 3vw, 34px);
	color: var(--mlp-cobalt);
	margin: 0 0 6px;
}
.mlp-cta-band p {
	font-family: var(--mlp-font-body);
	font-size: 15px;
	line-height: 1.6;
	color: var(--mlp-body);
	margin: 0;
	max-width: 46ch;
}
.mlp-cta-actions { display: flex; flex-direction: column; gap: 12px; min-width: 220px; }
.mlp-cta-mark { width: 120px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
	:root { --mlp-pad: 40px; }

	.mlp-hero-band-inner { grid-template-columns: minmax(0, 1fr); }
	.mlp-collage { justify-self: start; max-width: 380px; }
	.mlp-events-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.mlp-site-footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
	.mlp-footer-sign { justify-self: start; text-align: left; }
	.mlp-cta-band { grid-template-columns: 1fr; }
	.mlp-cta-actions { min-width: 0; }
	.mlp-cta-mark { display: none; }
}

@media (max-width: 760px) {
	.mlp-nav {
		position: absolute;
		top: 100%; left: var(--mlp-pad); right: var(--mlp-pad);
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: var(--mlp-white);
		border: 1px solid var(--mlp-rule);
		border-radius: 10px;
		padding: 6px;
		box-shadow: 0 12px 30px rgba(30,27,22,0.10);
	}
	.mlp-nav:not(.is-open) { display: none; }
	.mlp-nav a { padding: 13px 14px; }
	.mlp-nav a.is-current::after { display: none; }
	.mlp-nav-toggle { display: inline-flex; }
	.mlp-site-header-inner { position: relative; }
}

@media (max-width: 640px) {
	:root { --mlp-pad: 24px; }

	.mlp-hero-band { padding: 30px 0 26px; }
	.mlp-events-grid { grid-template-columns: minmax(0, 1fr); gap: 22px; }
	.mlp-list-note { flex-direction: column; align-items: flex-start; gap: 14px; }
	.mlp-site-footer-inner { grid-template-columns: 1fr; }
	.mlp-collage { max-width: 100%; min-height: 150px; }
	.mlp-cta-band { padding: 24px; }
}
/* =========================================================
   About Zainab
   ========================================================= */
.mlp-video-wrap {
	margin: 10px 0 64px;
}
.mlp-video-frame {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--mlp-ivory);
	border: 1.5px solid rgba(18,56,143,0.30);
	display: flex;
	align-items: center;
	justify-content: center;
}
.mlp-video-frame iframe,
.mlp-video-frame video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}
.mlp-video-play {
	width: 92px; height: 92px;
	border-radius: 50%;
	background: var(--mlp-cobalt);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 30px rgba(18,56,143,0.20);
}
.mlp-video-play svg { width: 28px; height: 28px; color: var(--mlp-white); margin-left: 5px; }

.mlp-prose-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
	gap: 48px;
	align-items: stretch;
	padding-bottom: 54px;
}
.mlp-prose p {
	font-family: var(--mlp-font-body);
	font-size: 15.5px;
	line-height: 1.72;
	color: var(--mlp-body);
	margin: 0 0 18px;
}
.mlp-prose p:last-child { margin-bottom: 0; }

.mlp-quote-card {
	position: relative;
	background: var(--mlp-cobalt);
	padding: 44px 40px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.mlp-quote-card blockquote {
	font-family: var(--mlp-font-display);
	font-weight: 400;
	font-size: clamp(24px, 2.6vw, 34px);
	line-height: 1.24;
	color: var(--mlp-white);
	margin: 0 0 20px;
}
.mlp-quote-rule {
	display: block;
	width: 104px; height: 5px;
	background: var(--mlp-sun);
	border-radius: 3px;
	margin-bottom: 22px;
}
.mlp-quote-attr {
	font-family: var(--mlp-font-hand);
	font-size: 26px;
	color: var(--mlp-white);
}
/* =========================================================
   Contact
   ========================================================= */
.mlp-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.8fr);
	gap: 30px;
	align-items: start;
	padding-bottom: 50px;
}
.mlp-contact-side { display: grid; gap: 22px; }

.mlp-form-card {
	background: var(--mlp-white);
	border: 1px solid var(--mlp-rule);
	padding: 40px 38px 34px;
}
.mlp-form-card h2 {
	font-family: var(--mlp-font-display);
	font-weight: 400;
	font-size: clamp(28px, 3.2vw, 40px);
	line-height: 1.12;
	color: var(--mlp-cobalt);
	margin: 0 0 10px;
}
.mlp-form-intro {
	font-family: var(--mlp-font-body);
	font-size: 15px;
	color: var(--mlp-body);
	margin: 0 0 26px;
}

.mlp-field { margin-bottom: 18px; }
.mlp-field label {
	display: block;
	font-family: var(--mlp-font-body);
	font-size: 13.5px;
	font-weight: 500;
	color: var(--mlp-ink);
	margin-bottom: 7px;
}
.mlp-field input,
.mlp-field select,
.mlp-field textarea {
	width: 100%;
	font-family: var(--mlp-font-body);
	font-size: 14.5px;
	color: var(--mlp-ink);
	background: var(--mlp-white);
	border: 1px solid #D9D3C9;
	border-radius: 4px;
	padding: 13px 15px;
	transition: border-color .18s ease, box-shadow .18s ease;
}
.mlp-field textarea { min-height: 128px; resize: vertical; }
.mlp-field input::placeholder,
.mlp-field textarea::placeholder { color: #A7A196; }
.mlp-field input:focus,
.mlp-field select:focus,
.mlp-field textarea:focus {
	outline: none;
	border-color: var(--mlp-cobalt);
	box-shadow: 0 0 0 3px rgba(18,56,143,0.10);
}
.mlp-field select { appearance: none; background-image: none; cursor: pointer; }
.mlp-select-wrap { position: relative; }
.mlp-select-wrap::after {
	content: "";
	position: absolute;
	right: 16px; top: 50%;
	width: 9px; height: 9px;
	border-right: 2px solid var(--mlp-body);
	border-bottom: 2px solid var(--mlp-body);
	transform: translateY(-70%) rotate(45deg);
	pointer-events: none;
}
.mlp-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.mlp-form-card .mlp-btn { width: 100%; margin-top: 4px; }
.mlp-form-note {
	font-family: var(--mlp-font-body);
	font-size: 12px;
	color: var(--mlp-muted);
	margin: 14px 0 0;
}

.mlp-alert {
	font-family: var(--mlp-font-body);
	font-size: 14px;
	padding: 14px 16px;
	border-radius: 4px;
	margin: 0 0 22px;
}
.mlp-alert-ok  { background: #E8F3EC; color: #1D6B3F; border: 1px solid #BFE0CB; }
.mlp-alert-err { background: #FBEAE8; color: #A3342A; border: 1px solid #F0C8C3; }
.mlp-info-card {
	background: var(--mlp-cobalt);
	color: var(--mlp-white);
	padding: 38px 34px;
}
/* Sized to sit on a single line inside the card at desktop widths. */
.mlp-info-card h2 {
	font-family: var(--mlp-font-display);
	font-weight: 400;
	font-size: clamp(22px, 2.4vw, 29px);
	line-height: 1.18;
	color: var(--mlp-white);
	margin: 0 0 20px;
}

/* Social row inside the cobalt contact card */
.mlp-info-social {
	display: flex;
	align-items: center;
	gap: 11px;
	margin: 0 0 26px;
}
.mlp-info-social a {
	width: 40px; height: 40px;
	border-radius: 50%;
	border: 1.5px solid rgba(255,255,255,0.5);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--mlp-white);
	transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.mlp-info-social a:hover,
.mlp-info-social a:focus-visible {
	background: var(--mlp-white);
	color: var(--mlp-cobalt);
	border-color: var(--mlp-white);
}
.mlp-info-social svg { width: 17px; height: 17px; }
.mlp-info-row {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	margin-bottom: 20px;
}
.mlp-info-row svg { width: 24px; height: 24px; flex: 0 0 24px; color: var(--mlp-white); margin-top: 2px; }
.mlp-info-row h3 {
	font-family: var(--mlp-font-body);
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 3px;
	color: var(--mlp-white);
}
.mlp-info-row p, .mlp-info-row a {
	font-family: var(--mlp-font-body);
	font-size: 14px;
	color: rgba(255,255,255,0.88);
	margin: 0;
	word-break: break-word;
}
.mlp-info-row a:hover { color: var(--mlp-sun); }
.mlp-info-rule {
	display: block;
	width: 78px; height: 3px;
	background: var(--mlp-sky);
	border-radius: 2px;
	margin: 26px 0 18px;
}
.mlp-info-card > p:last-child {
	font-family: var(--mlp-font-body);
	font-size: 14px;
	line-height: 1.66;
	color: rgba(255,255,255,0.88);
	margin: 0;
}

.mlp-note-card {
	background: rgba(255,255,255,0.72);
	border: 1px solid var(--mlp-rule);
	padding: 32px 30px;
}
.mlp-note-card p {
	font-family: var(--mlp-font-display);
	font-weight: 400;
	font-size: clamp(22px, 2.3vw, 29px);
	line-height: 1.2;
	color: var(--mlp-cobalt);
	margin: 0 0 16px;
}
.mlp-note-brush {
	display: block;
	width: 118px; height: 6px;
	border-radius: 4px;
	background: linear-gradient(90deg, var(--mlp-electric), var(--mlp-cobalt));
}

/* Responsive for the Phase 2 pages */
@media (max-width: 1024px) {
	.mlp-prose-grid { grid-template-columns: minmax(0, 1fr); gap: 30px; }
	.mlp-contact-grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 640px) {
	.mlp-video-wrap { padding: 8px; margin-bottom: 38px; }
	.mlp-video-play { width: 62px; height: 62px; margin-bottom: 10px; }
	.mlp-video-play svg { width: 20px; height: 20px; }
	.mlp-form-card { padding: 28px 22px 24px; }
	.mlp-info-card { padding: 28px 22px; }
	.mlp-note-card { padding: 24px 22px; }
	.mlp-quote-card { padding: 32px 26px; }
	.mlp-prose-grid { padding-bottom: 34px; }
}

/* =============================================================
   Brand artwork layer — torn-paper panels, brush marks, rules.
   Appended last so it wins over the flat-colour placeholders.
   ============================================================= */

.mlp-quote-card,
.mlp-info-card {
	background-color: transparent;
	background-image: url('../images/quote-panel.webp');
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
}

.mlp-quote-card {
	padding: 54px 72px 58px 46px;
	min-height: 320px;
	justify-content: center;
}

.mlp-quote-card blockquote {
	margin: 0 0 20px;
	max-width: 16ch;
	text-shadow: 0 1px 3px rgba(8, 28, 74, 0.32);
}

.mlp-quote-rule {
	width: 157px;
	height: 28px;
	background: url('../images/underline-gold.webp') left center / contain no-repeat;
	border-radius: 0;
	margin: 0 0 8px;
}

.mlp-quote-attr {
	font-size: 30px;
	text-shadow: 0 1px 3px rgba(8, 28, 74, 0.32);
}

.mlp-info-card {
	padding: 46px 74px 54px 42px;
}

.mlp-info-card h2,
.mlp-info-card p,
.mlp-info-card a {
	text-shadow: 0 1px 3px rgba(8, 28, 74, 0.32);
}
.mlp-cta-band {
	background: rgba(252, 250, 246, 0.86);
	border: 1px solid rgba(30, 27, 22, 0.10);
	padding: 26px 40px;
}

.mlp-cta-mark {
	display: block;
	width: 138px;
	height: 138px;
	background: url('../images/brush-blue.webp') center / contain no-repeat;
	align-self: center;
}

@media (max-width: 1024px) {
	.mlp-quote-card { padding: 46px 62px 50px 38px; min-height: 280px; }
	.mlp-info-card  { padding: 40px 64px 46px 36px; }
	.mlp-cta-mark   { width: 118px; height: 118px; }
}

@media (max-width: 720px) {
	.mlp-quote-card { padding: 40px 56px 46px 32px; min-height: 230px; }
	.mlp-info-card  { padding: 36px 58px 42px 30px; }
	.mlp-cta-mark   { display: block; width: 104px; height: 104px; align-self: flex-start; }
	.mlp-quote-card blockquote { max-width: none; }
}