/* =============================================================
   Mithila Our Story Page — our-story.css  v1.0
   Sections: intro · beginnings · timeline · impact · heritage
             values · journey · future · subscribe
   Colour scheme: Creedy theme CSS variables
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&display=swap');

/* ── Reset ───────────────────────────────────────────────── */
.mos-page *,
.mos-page *::before,
.mos-page *::after { box-sizing: border-box; }
.mos-page img     { max-width: 100%; height: auto; display: block; }
.mos-page ul,
.mos-page ol      { list-style: none; margin: 0; padding: 0; }
.mos-page figure  { margin: 0; }
.mos-page p       { margin-top: 0; }

.mos-page {
	width: 100%;
	font-family: var(--wdtFontTypo_Base, 'Roboto', sans-serif);
	color: var(--wdtBodyTxtColor, #202020);
	background: var(--wdtBodyBGColor, #fff);
}

.mos-page section {
	display: block;
	width: 100%;
	position: relative;
}

/* ── Container ───────────────────────────────────────────── */
.mos-container {
	width: 100%;
	max-width: 1366px;
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 4vw, 3rem);
}

/* ── Shared typography ──────────────────────────────────── */
.mos-h2 {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: clamp(1.9rem, 3.8vw, 2.8rem);
	font-weight: var(--wdtFontWeight_Alt, 700);
	color: var(--wdtHeadAltColor, #202020);
	line-height: 1.2;
	margin: 0 0 1.1rem;
}
.mos-h2--center { text-align: center; }
.mos-h2--light  { color: #fff; }

.mos-script-kicker {
	display: block;
	font-family: 'Dancing Script', cursive;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--wdtPrimaryColor, #d88e7d);
	margin-bottom: .6rem;
	line-height: 1.3;
}
.mos-script-kicker--center { text-align: center; }
.mos-script-kicker--light  { color: rgba(255,255,255,.85); }

.mos-divider {
	width: 52px; height: 4px;
	background: var(--wdtPrimaryColor, #d88e7d);
	border-radius: 2px;
	margin-bottom: 1.5rem;
}
.mos-divider--center { margin-inline: auto; }
.mos-divider--light  { background: rgba(255,255,255,.55); }

/* ── Buttons ─────────────────────────────────────────────── */
.mos-btn {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .72rem 1.75rem;
	background: var(--wdtPrimaryColor, #d88e7d);
	color: #fff;
	border: 2px solid var(--wdtPrimaryColor, #d88e7d);
	border-radius: var(--wdtRadius_Part, 2.5em);
	font-size: .9375rem;
	font-weight: 600;
	font-family: var(--wdtFontTypo_Base, 'Roboto', sans-serif);
	text-decoration: none;
	transition: var(--wdtBaseTransition, all .3s linear);
	cursor: pointer;
	line-height: 1;
}
.mos-btn:hover {
	background: var(--wdtSecondaryColor, #363e5a);
	border-color: var(--wdtSecondaryColor, #363e5a);
	color: #fff;
}
.mos-btn--outline {
	background: transparent;
	color: #fff;
	border-color: rgba(255,255,255,.65);
}
.mos-btn--outline:hover {
	background: #fff;
	border-color: #fff;
	color: var(--wdtSecondaryColor, #363e5a);
}

/* =============================================================
   1. PAGE INTRO — cream banner with pattern
   ============================================================= */
.mos-intro {
	background: var(--wdtTertiaryColor, #f8eae1);
	padding-block: clamp(4rem, 7vw, 6rem);
	overflow: hidden;
}

.mos-intro__pattern {
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%23d88e7d' stroke-width='0.5' opacity='0.18'%3E%3Ccircle cx='30' cy='30' r='25'/%3E%3Ccircle cx='30' cy='30' r='15'/%3E%3Ccircle cx='30' cy='30' r='5'/%3E%3Cline x1='5' y1='30' x2='55' y2='30'/%3E%3Cline x1='30' y1='5' x2='30' y2='55'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	background-size: 60px 60px;
	pointer-events: none;
	z-index: 0;
}

.mos-intro__inner {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin-inline: auto;
	text-align: center;
}

.mos-intro__lead {
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	line-height: 1.85;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .82;
	max-width: 68ch;
	margin: 0 auto;
}

/* =============================================================
   2. OUR BEGINNINGS
   ============================================================= */
.mos-beginnings {
	background: var(--wdtBodyBGColor, #fff);
	padding-block: clamp(4rem, 7vw, 6.5rem);
}

.mos-beginnings__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2.5rem, 5vw, 5.5rem);
	align-items: center;
}

.mos-beginnings__figure img {
	width: 100%;
	max-width: 520px;
	aspect-ratio: 4/3;
	object-fit: cover;
	border-radius: var(--wdtRadius_3X, 10px);
	box-shadow: 0 6px 30px rgba(54,62,90,.15);
	outline: 6px solid var(--wdtPrimaryColor, #d88e7d);
	outline-offset: 8px;
}

.mos-beginnings__body p {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .82;
	margin-bottom: 1rem;
}
.mos-beginnings__body p:last-child { margin-bottom: 0; }

.mos-pullquote {
	border-left: 4px solid var(--wdtPrimaryColor, #d88e7d);
	padding: 1rem 1.5rem;
	margin: 1.5rem 0;
	background: var(--wdtTertiaryColor, #f8eae1);
	border-radius: 0 var(--wdtRadius_3X, 10px) var(--wdtRadius_3X, 10px) 0;
}
.mos-pullquote p {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: 1.1rem;
	font-weight: 500;
	font-style: italic;
	color: var(--wdtSecondaryColor, #363e5a);
	line-height: 1.65;
	opacity: 1 !important;
	margin-bottom: 0 !important;
}

@media (max-width: 820px) {
	.mos-beginnings__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   3. TIMELINE
   ============================================================= */
.mos-timeline {
	background: var(--wdtTertiaryColor, #f8eae1);
	padding-block: clamp(4rem, 7vw, 6.5rem);
}

.mos-timeline__intro {
	text-align: center;
	max-width: 640px;
	margin-inline: auto;
	margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.mos-timeline__intro p {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .78;
}

.mos-timeline__track {
	position: relative;
}

/* Vertical centre line */
.mos-timeline__track::before {
	content: '';
	position: absolute;
	top: 0; bottom: 0;
	left: 50%;
	width: 2px;
	background: linear-gradient(
		to bottom,
		var(--wdtPrimaryColor, #d88e7d) 0%,
		var(--wdtSecondaryColor, #363e5a) 100%
	);
	transform: translateX(-50%);
}

.mos-timeline__item {
	display: grid;
	grid-template-columns: 1fr 48px 1fr;
	gap: 0;
	margin-bottom: 2.75rem;
	align-items: start;
}
.mos-timeline__item:last-child { margin-bottom: 0; }

.mos-timeline__node {
	grid-column: 2;
	grid-row: 1;
	display: flex;
	justify-content: center;
	padding-top: 1.1rem;
	z-index: 1;
}
.mos-timeline__node::before {
	content: '';
	width: 18px; height: 18px;
	border-radius: 50%;
	background: var(--wdtPrimaryColor, #d88e7d);
	border: 3px solid #fff;
	box-shadow: 0 0 0 3px var(--wdtPrimaryColor, #d88e7d);
	flex-shrink: 0;
}

.mos-timeline__card {
	background: #fff;
	border-radius: var(--wdtRadius_3X, 10px);
	padding: 1.5rem 1.75rem;
	box-shadow: 0 4px 20px rgba(54,62,90,.09);
}

/* Left-side card */
.mos-timeline__item--left .mos-timeline__card {
	grid-column: 1; grid-row: 1;
	margin-right: 1.5rem;
	text-align: right;
}
.mos-timeline__item--left .mos-timeline__space {
	grid-column: 3; grid-row: 1;
}

/* Right-side card */
.mos-timeline__item--right .mos-timeline__space {
	grid-column: 1; grid-row: 1;
}
.mos-timeline__item--right .mos-timeline__card {
	grid-column: 3; grid-row: 1;
	margin-left: 1.5rem;
	text-align: left;
}

.mos-timeline__phase {
	display: inline-block;
	font-size: .8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--wdtPrimaryColor, #d88e7d);
	margin-bottom: .4rem;
}
.mos-timeline__title {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--wdtSecondaryColor, #363e5a);
	margin-bottom: .5rem;
	line-height: 1.3;
}
.mos-timeline__desc {
	font-size: .9375rem;
	line-height: 1.72;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .78;
	margin: 0;
}

@media (max-width: 680px) {
	.mos-timeline__track::before { left: 10px; }

	.mos-timeline__item {
		grid-template-columns: 24px 1fr;
		grid-template-rows: auto;
		margin-bottom: 2rem;
	}
	.mos-timeline__node {
		grid-column: 1; grid-row: 1;
		padding-top: .4rem;
		justify-content: center;
	}
	.mos-timeline__node::before { width: 14px; height: 14px; }

	.mos-timeline__item--left .mos-timeline__card,
	.mos-timeline__item--right .mos-timeline__card {
		grid-column: 2; grid-row: 1;
		text-align: left;
		margin-right: 0;
		margin-left: .75rem;
	}
	.mos-timeline__item--left .mos-timeline__space,
	.mos-timeline__item--right .mos-timeline__space { display: none; }
}

/* =============================================================
   4. IMPACT NUMBERS
   ============================================================= */
.mos-impact {
	background: var(--wdtSecondaryColor, #363e5a);
	padding-block: clamp(3rem, 6vw, 5rem);
}

.mos-impact__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	text-align: center;
}

.mos-impact__number {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: clamp(2.8rem, 5vw, 4rem);
	font-weight: 700;
	color: var(--wdtPrimaryColor, #d88e7d);
	line-height: 1;
	margin-bottom: .4rem;
}
.mos-impact__label {
	font-size: .9375rem;
	font-weight: 700;
	color: rgba(255,255,255,.88);
	text-transform: uppercase;
	letter-spacing: .07em;
}
.mos-impact__sub {
	font-size: .85rem;
	color: rgba(255,255,255,.48);
	margin-top: .3rem;
}

@media (max-width: 680px) {
	.mos-impact__grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================================
   5. MITHILA HERITAGE — cultural roots
   ============================================================= */
.mos-heritage {
	background: var(--wdtBodyBGColor, #fff);
	padding-block: clamp(4rem, 7vw, 6.5rem);
}

.mos-heritage__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2.5rem, 5vw, 5.5rem);
	align-items: center;
}

.mos-heritage__body p {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .82;
	margin-bottom: 1rem;
}
.mos-heritage__body p:last-child { margin-bottom: 0; }

.mos-heritage__figure img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	border-radius: var(--wdtRadius_3X, 10px);
	box-shadow: 0 6px 28px rgba(54,62,90,.14);
}

@media (max-width: 820px) {
	.mos-heritage__grid { grid-template-columns: 1fr; }
	.mos-heritage__figure { order: -1; }
}

/* =============================================================
   6. OUR VALUES / PILLARS
   ============================================================= */
.mos-values {
	background: var(--wdtTertiaryColor, #f8eae1);
	padding-block: clamp(4rem, 7vw, 6.5rem);
}

.mos-values__intro {
	text-align: center;
	max-width: 640px;
	margin-inline: auto;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.mos-values__intro p {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .78;
}

.mos-values__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.mos-values__card {
	background: #fff;
	border-radius: var(--wdtRadius_3X, 10px);
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(54,62,90,.08);
	transition: transform .3s ease, box-shadow .3s ease;
}
.mos-values__card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 36px rgba(54,62,90,.14);
}

.mos-values__card-img {
	aspect-ratio: 4/3;
	overflow: hidden;
}
.mos-values__card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
	display: block;
}
.mos-values__card:hover .mos-values__card-img img { transform: scale(1.06); }

.mos-values__card-body {
	padding: 1.5rem 1.75rem 1.75rem;
}

.mos-values__card-kicker {
	display: inline-block;
	font-size: .8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--wdtPrimaryColor, #d88e7d);
	margin-bottom: .5rem;
}

.mos-values__card-title {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--wdtSecondaryColor, #363e5a);
	margin-bottom: .65rem;
}

.mos-values__card-desc {
	font-size: .9375rem;
	line-height: 1.72;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .78;
	margin: 0;
}

@media (max-width: 820px) {
	.mos-values__grid { grid-template-columns: 1fr; }
}
@media (min-width: 560px) and (max-width: 820px) {
	.mos-values__grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================================
   7. OUR JOURNEY — narrative text section
   ============================================================= */
.mos-journey {
	background: var(--wdtTertiaryColor, #f8eae1);
	padding-block: clamp(4rem, 7vw, 6.5rem);
	position: relative;
	overflow: hidden;
}

/* Subtle Mithila SVG watermark in corner */
.mos-journey::before {
	content: '';
	position: absolute;
	inset-block-end: -60px;
	inset-inline-end: -60px;
	width: 340px;
	height: 340px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='90' fill='none' stroke='%23d88e7d' stroke-width='1.5' opacity='.18'/%3E%3Ccircle cx='100' cy='100' r='65' fill='none' stroke='%23d88e7d' stroke-width='1' opacity='.14'/%3E%3Ccircle cx='100' cy='100' r='40' fill='none' stroke='%23d88e7d' stroke-width='1' opacity='.1'/%3E%3Cpath d='M100 10 L110 90 L190 100 L110 110 L100 190 L90 110 L10 100 L90 90 Z' fill='none' stroke='%23d88e7d' stroke-width='1.2' opacity='.12'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	pointer-events: none;
}

/* Section header */
.mos-journey__header {
	text-align: center;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* Two-column grid */
.mos-journey__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: start;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* Left: pull quote */
.mos-journey__quote {
	margin: 0 0 1.5rem;
	padding: 1.75rem 1.75rem 1.75rem 2rem;
	border-left: 4px solid var(--wdtPrimaryColor, #d88e7d);
	background: rgba(255,255,255,.65);
	border-radius: 0 .5rem .5rem 0;
	font-size: clamp(1.1rem, 2.2vw, 1.3rem);
	font-style: italic;
	line-height: 1.75;
	color: var(--wdtSecondaryColor, #363e5a);
}

.mos-journey__quote-sub {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .75;
	margin: 0;
	padding-left: .5rem;
}

/* Right: prose paragraphs */
.mos-journey__right p {
	font-size: 1rem;
	line-height: 1.88;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .82;
	margin-bottom: 1.25rem;
}
.mos-journey__right p:last-child { margin-bottom: 0; }

/* Values strip */
.mos-journey__values {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(54,62,90,.12);
	padding-top: clamp(2rem, 4vw, 3rem);
}

.mos-journey__value {
	display: flex;
	align-items: center;
	gap: .85rem;
	background: #fff;
	border-radius: .6rem;
	padding: 1rem 1.25rem;
	box-shadow: 0 2px 10px rgba(54,62,90,.07);
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: .95rem;
	font-weight: 600;
	color: var(--wdtSecondaryColor, #363e5a);
	letter-spacing: .02em;
	transition: transform .25s ease, box-shadow .25s ease;
}
.mos-journey__value:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(54,62,90,.13);
}

.mos-journey__value-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	background: var(--wdtTertiaryColor, #f8eae1);
	border-radius: 50%;
	font-size: 1.15rem;
	flex-shrink: 0;
}

@media (max-width: 900px) {
	.mos-journey__grid { grid-template-columns: 1fr; }
	.mos-journey__values { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.mos-journey__values { grid-template-columns: 1fr; }
}

/* =============================================================
   8. LOOKING AHEAD — dark image CTA
   ============================================================= */
.mos-future {
	position: relative;
	overflow: hidden;
	padding-block: clamp(5rem, 9vw, 8rem);
}

.mos-future__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.mos-future__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(54,62,90,.90) 0%,
		rgba(54,62,90,.75) 100%
	);
}

.mos-future__inner {
	position: relative;
	z-index: 1;
	max-width: 720px;
	margin-inline: auto;
	text-align: center;
}

.mos-future__body p {
	font-size: 1.05rem;
	line-height: 1.82;
	color: rgba(255,255,255,.85);
	margin-bottom: 1rem;
}
.mos-future__body p:last-child { margin-bottom: 0; }

.mos-future__actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 2rem;
}

/* =============================================================
   9. SUBSCRIBE
   ============================================================= */
.mos-subscribe {
	position: relative;
	overflow: hidden;
	padding-block: clamp(4.5rem, 8vw, 7rem);
}

.mos-subscribe__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.mos-subscribe__overlay {
	position: absolute;
	inset: 0;
	background: rgba(248,234,225,.88);
}

.mos-subscribe__inner {
	position: relative;
	z-index: 1;
	text-align: center;
}

.mos-subscribe__desc {
	max-width: 52ch;
	margin: 0 auto 1.75rem;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .78;
}

.mos-subscribe__form {
	display: flex;
	gap: .75rem;
	max-width: 500px;
	margin-inline: auto;
	flex-wrap: wrap;
	justify-content: center;
}

.mos-subscribe__input {
	flex: 1;
	min-width: 220px;
	padding: .78rem 1.35rem;
	border: 2px solid rgba(54,62,90,.22);
	border-radius: var(--wdtRadius_Part, 2.5em);
	font-size: 1rem;
	font-family: var(--wdtFontTypo_Base, 'Roboto', sans-serif);
	color: var(--wdtBodyTxtColor, #202020);
	background: rgba(255,255,255,.85);
	outline: none;
	transition: var(--wdtBaseTransition, all .3s linear);
}
.mos-subscribe__input::placeholder { color: rgba(32,32,32,.45); }
.mos-subscribe__input:focus {
	border-color: var(--wdtPrimaryColor, #d88e7d);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(216,142,125,.2);
}

/* ══════════════════════════════════════════════════════════════
   MITHILA COLOUR + CARD DESIGN OVERRIDES  v1.1
   Applies the homepage Mithila palette to the Our Story page.
   ══════════════════════════════════════════════════════════════ */

/* ── Shared tokens ─────────────────────────────────────────── */
.mos-script-kicker        { color: #9b2335; font-size: 1.5rem; }
.mos-script-kicker--light { color: rgba(255,255,255,.90); }
.mos-h2                   { color: #1a0f08; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.15; }
.mos-h2--light            { color: #fff; }
.mos-divider              { background: #9b2335; }
.mos-btn                  { background: #9b2335; border-color: #9b2335; }
.mos-btn:hover            { background: #6e1422; border-color: #6e1422; }
.mos-pullquote            { border-left-color: #9b2335; background: #fdf6e3; }
.mos-pullquote p          { color: #1a0f08; }

/* ── 1. Intro — cream background (breadcrumb above carries the image) ── */
.mos-intro {
	background-color: #fdf6e3 !important;
	padding-block: clamp(4rem, 7vw, 6rem);
	overflow: visible !important;
}
.mos-intro__bg      { display: none; }
.mos-intro__overlay { display: none; }
.mos-intro__pattern { display: none; }
.mos-intro__inner   { position: relative; z-index: 1; }
.mos-intro .mos-h2  { color: #1a0f08 !important; }
.mos-intro .mos-script-kicker { color: #9b2335 !important; }
.mos-intro .mos-divider { background: #9b2335 !important; }
.mos-intro__lead    { color: rgba(26,15,8,.78) !important; opacity: 1; }

/* ── 2. Beginnings ─────────────────────────────────────────── */
.mos-beginnings { background: #fff; }
.mos-beginnings__figure img {
	outline-color: #9b2335;
	box-shadow: 0 8px 36px rgba(26,15,8,.14);
}
.mos-beginnings__body p { color: rgba(26,15,8,.78); opacity: 1; }

/* ── 3. Timeline ───────────────────────────────────────────── */
.mos-timeline { background: #fdf6e3; }
.mos-timeline__track::before {
	background: linear-gradient(to bottom, #9b2335 0%, #834d22 100%);
}
.mos-timeline__node::before {
	background: #9b2335;
	box-shadow: 0 0 0 3px #9b2335;
}
.mos-timeline__phase { color: #9b2335; }
.mos-timeline__title {
	color: #1a0f08;
	font-family: 'Playfair Display', Georgia, serif;
}
.mos-timeline__desc { color: rgba(26,15,8,.72); opacity: 1; }

/* Card base — bigger shadow + radius */
.mos-timeline__card {
	border-radius: 14px !important;
	box-shadow: 0 6px 28px rgba(26,15,8,.11), 0 2px 8px rgba(26,15,8,.07) !important;
	transition: box-shadow .25s ease, transform .25s ease;
}
.mos-timeline__card:hover {
	box-shadow: 0 12px 40px rgba(26,15,8,.16), 0 4px 12px rgba(26,15,8,.09) !important;
	transform: translateY(-3px);
}
/* Right-side cards — left accent border */
.mos-timeline__item--right .mos-timeline__card { border-left: 4px solid #9b2335; }
/* Left-side cards — right accent border */
.mos-timeline__item--left  .mos-timeline__card { border-right: 4px solid #9b2335; }

/* Per-item cream tints */
.mos-timeline__item:nth-child(1) .mos-timeline__card { background: #fff8ee; border-left-color:  #9b2335; }
.mos-timeline__item:nth-child(2) .mos-timeline__card { background: #f3faf4; border-right-color: #2c5f2e; }
.mos-timeline__item:nth-child(3) .mos-timeline__card { background: #fffbee; border-left-color:  #c4850a; }
.mos-timeline__item:nth-child(4) .mos-timeline__card { background: #fff5f5; border-right-color: #9b2335; }
.mos-timeline__item:nth-child(5) .mos-timeline__card { background: #f0f5ff; border-left-color:  #1e5bb5; }
.mos-timeline__item:nth-child(6) .mos-timeline__card { background: #f3faf4; border-right-color: #2c5f2e; }
.mos-timeline__item:nth-child(7) .mos-timeline__card { background: #fff8ee; border-left-color:  #9b2335; }
.mos-timeline__item:nth-child(8) .mos-timeline__card { background: #fffbee; border-right-color: #c4850a; }

/* ── 4. Impact Numbers — cream (matches homepage stats) ─────── */
.mos-impact {
	background: #fdf6e3 !important;
	border-top: 1px solid rgba(155,35,53,.10);
	border-bottom: 1px solid rgba(155,35,53,.10);
}
.mos-impact__number { color: #9b2335 !important; }
.mos-impact__label  { color: #1a0f08 !important; }
.mos-impact__sub    { color: rgba(26,15,8,.52) !important; }

/* ── 5. Heritage ───────────────────────────────────────────── */
.mos-heritage { background: #fff; }
.mos-heritage__body p { color: rgba(26,15,8,.78); opacity: 1; }
.mos-heritage__figure img { box-shadow: 0 8px 32px rgba(26,15,8,.13); }

/* ── 6. Values Cards — brown background matches homepage features ── */
.mos-values {
	background: #834d22 !important;
	position: relative;
}
/* Subtle diamond watermark pattern (same as homepage features) */
.mos-values::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 4L56 30L30 56L4 30Z' fill='none' stroke='rgba(255,255,255,.06)' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='3' fill='rgba(255,255,255,.04)'/%3E%3C/svg%3E");
	background-size: 60px 60px;
	pointer-events: none;
	z-index: 0;
}
.mos-values .mos-container { position: relative; z-index: 1; }
/* Section header — white text on brown */
.mos-values .mos-script-kicker { color: rgba(255,255,255,.82) !important; }
.mos-values .mos-h2            { color: #fff !important; }
.mos-values .mos-divider       { background: rgba(255,255,255,.45) !important; }
.mos-values__intro p           { color: rgba(255,255,255,.78) !important; }
/* Cards stay cream/white */
.mos-values__card {
	background: #fdf6e3 !important;
	border-radius: 16px !important;
	border-top: 4px solid #9b2335 !important;
	box-shadow: 0 10px 40px rgba(26,15,8,.30), 0 3px 12px rgba(26,15,8,.18) !important;
}
.mos-values__card:nth-child(2) { border-top-color: #9a6535 !important; }
.mos-values__card:nth-child(3) { border-top-color: #2c5f2e !important; }
.mos-values__card:hover {
	box-shadow: 0 18px 54px rgba(26,15,8,.38), 0 5px 16px rgba(26,15,8,.22) !important;
	transform: translateY(-6px);
}
.mos-values__card:nth-child(1) { background: #fff8ee !important; border-top-color: #9b2335 !important; }
.mos-values__card:nth-child(2) { background: #f3faf4 !important; border-top-color: #2c5f2e !important; }
.mos-values__card:nth-child(3) { background: #f0f5ff !important; border-top-color: #1e5bb5 !important; }
.mos-values__card:nth-child(1) .mos-values__card-kicker { color: #9b2335 !important; }
.mos-values__card:nth-child(2) .mos-values__card-kicker { color: #2c5f2e !important; }
.mos-values__card:nth-child(3) .mos-values__card-kicker { color: #1e5bb5 !important; }
.mos-values__card-title { color: #1a0f08 !important; font-family: 'Playfair Display', Georgia, serif; }
.mos-values__card-desc  { color: rgba(26,15,8,.70) !important; opacity: 1 !important; }

/* ── 7. Journey ────────────────────────────────────────────── */
.mos-journey { background: #fdf6e3; }
.mos-journey__quote {
	border-left-color: #9b2335;
	background: rgba(255,255,255,.80);
	color: #1a0f08;
}
.mos-journey__right p  { color: rgba(26,15,8,.78); opacity: 1; }
.mos-journey__values   { border-top-color: rgba(155,35,53,.12); }
.mos-journey__value    { background: #fff; color: #1a0f08; box-shadow: 0 4px 16px rgba(26,15,8,.09); }
.mos-journey__value:hover { box-shadow: 0 8px 24px rgba(26,15,8,.14); }
.mos-journey__value-icon { background: #fdf6e3; }

/* ── 8. Looking Ahead — warm Mithila earth overlay ─────────── */
.mos-future__overlay {
	background: linear-gradient(135deg, rgba(131,77,34,.84) 0%, rgba(26,15,8,.68) 100%);
}

/* ── 9. Subscribe ──────────────────────────────────────────── */
.mos-subscribe__overlay { background: rgba(253,246,227,.92); }
.mos-subscribe__input { border-color: rgba(155,35,53,.22); }
.mos-subscribe__input:focus {
	border-color: #9b2335;
	box-shadow: 0 0 0 3px rgba(155,35,53,.18);
}

/* ══════════════════════════════════════════════════════════════
   DESIGN ENHANCEMENTS v1.2 — Timeline artwork, bigger cards,
   values redesign, journey values 2×2 layout
   ══════════════════════════════════════════════════════════════ */

/* ── Timeline: Mithila lotus art blended at left/right edges ── */
.mos-timeline { overflow: hidden; }
.mos-timeline::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' width='120' height='120'%3E%3Ccircle cx='60' cy='60' r='52' fill='none' stroke='%239b2335' stroke-width='1' opacity='.13'/%3E%3Ccircle cx='60' cy='60' r='36' fill='none' stroke='%239b2335' stroke-width='.8' opacity='.11'/%3E%3Ccircle cx='60' cy='60' r='18' fill='none' stroke='%239b2335' stroke-width='.7' opacity='.09'/%3E%3Cellipse cx='60' cy='14' rx='9' ry='20' fill='%239b2335' opacity='.07'/%3E%3Cellipse cx='60' cy='14' rx='9' ry='20' fill='%239b2335' opacity='.07' transform='rotate(45 60 60)'/%3E%3Cellipse cx='60' cy='14' rx='9' ry='20' fill='%239b2335' opacity='.07' transform='rotate(90 60 60)'/%3E%3Cellipse cx='60' cy='14' rx='9' ry='20' fill='%239b2335' opacity='.07' transform='rotate(135 60 60)'/%3E%3Cellipse cx='60' cy='14' rx='9' ry='20' fill='%239b2335' opacity='.07' transform='rotate(180 60 60)'/%3E%3Cellipse cx='60' cy='14' rx='9' ry='20' fill='%239b2335' opacity='.07' transform='rotate(225 60 60)'/%3E%3Cellipse cx='60' cy='14' rx='9' ry='20' fill='%239b2335' opacity='.07' transform='rotate(270 60 60)'/%3E%3Cellipse cx='60' cy='14' rx='9' ry='20' fill='%239b2335' opacity='.07' transform='rotate(315 60 60)'/%3E%3Ccircle cx='60' cy='60' r='5' fill='%239b2335' opacity='.10'/%3E%3C/svg%3E");
	background-size: 160px 160px;
	background-repeat: repeat;
	-webkit-mask-image: linear-gradient(to right, rgba(0,0,0,.9) 0%, rgba(0,0,0,.35) 18%, rgba(0,0,0,0) 35%, rgba(0,0,0,0) 65%, rgba(0,0,0,.35) 82%, rgba(0,0,0,.9) 100%);
	mask-image: linear-gradient(to right, rgba(0,0,0,.9) 0%, rgba(0,0,0,.35) 18%, rgba(0,0,0,0) 35%, rgba(0,0,0,0) 65%, rgba(0,0,0,.35) 82%, rgba(0,0,0,.9) 100%);
	pointer-events: none;
	z-index: 0;
}
.mos-timeline .mos-container { position: relative; z-index: 1; }

/* Hide phase labels */
.mos-timeline__phase { display: none !important; }

/* Deeper shadows on timeline cards */
.mos-timeline__card {
	box-shadow: 0 10px 40px rgba(26,15,8,.14), 0 3px 12px rgba(26,15,8,.09) !important;
}
.mos-timeline__card:hover {
	box-shadow: 0 18px 56px rgba(26,15,8,.20), 0 6px 18px rgba(26,15,8,.11) !important;
	transform: translateY(-4px);
}

/* ── Values cards — smaller + no pillar labels ─────────────── */
.mos-values__card-kicker { display: none !important; }
.mos-values__card-img { aspect-ratio: 16/9 !important; }
.mos-values__card-body { padding: 1.2rem 1.4rem 1.4rem !important; }
.mos-values__card-title { font-size: 1.1rem !important; margin-bottom: .45rem !important; }
.mos-values__card-desc { font-size: .875rem !important; }
/* Colored left accent per card matching homepage style */
.mos-values__card:nth-child(1) { border-top: none !important; border-left: 4px solid #9b2335 !important; }
.mos-values__card:nth-child(2) { border-top: none !important; border-left: 4px solid #2c5f2e !important; }
.mos-values__card:nth-child(3) { border-top: none !important; border-left: 4px solid #1e5bb5 !important; }

/* ── Journey values — 2×2 grid with descriptions ───────────── */
.mos-journey__values {
	grid-template-columns: repeat(2, 1fr) !important;
	gap: 1.5rem !important;
}
.mos-journey__value {
	flex-direction: column !important;
	align-items: flex-start !important;
	padding: 1.75rem 2rem !important;
	gap: 1rem !important;
	box-shadow: 0 6px 28px rgba(26,15,8,.10), 0 2px 8px rgba(26,15,8,.07) !important;
	border-left: 4px solid #9b2335 !important;
	border-radius: 14px !important;
}
.mos-journey__value:nth-child(2) { border-left-color: #2c5f2e !important; }
.mos-journey__value:nth-child(3) { border-left-color: #1e5bb5 !important; }
.mos-journey__value:nth-child(4) { border-left-color: #c4850a !important; }
.mos-journey__value-icon {
	width: 3.2rem !important;
	height: 3.2rem !important;
	font-size: 1.55rem !important;
}
.mos-journey__value-body {
	display: flex;
	flex-direction: column;
	gap: .4rem;
}
.mos-journey__value-title {
	display: block;
	font-size: 1.1rem;
	font-weight: 700;
	color: #1a0f08;
	font-family: 'Playfair Display', Georgia, serif;
}
.mos-journey__value-desc {
	font-size: .9rem;
	line-height: 1.65;
	color: rgba(26,15,8,.68);
}
@media (max-width: 600px) {
	.mos-journey__values { grid-template-columns: 1fr !important; }
}

/* ══════════════════════════════════════════════════════════════
   HEADING CONSISTENCY LOCK  v1.4.2
   Forces uniform heading sizes regardless of parent-theme h1/h2
   element-level rules (--wdtFontSize_H1 vs --wdtFontSize_H2).
   Compound selector (0,1,1) + !important wins everything.
   ══════════════════════════════════════════════════════════════ */

.mos-page h1.mos-h2,
.mos-page h2.mos-h2 {
	font-family: 'Playfair Display', Georgia, serif !important;
	font-size:   clamp(2.4rem, 5vw, 3.6rem) !important;
	font-weight: 700 !important;
	line-height: 1.15 !important;
	letter-spacing: -.01em !important;
	text-transform: none !important;
	color: #1a0f08;
}
.mos-page h1.mos-h2--light,
.mos-page h2.mos-h2--light {
	color: #fff !important;
}

.mos-page .mos-script-kicker {
	font-family: 'Dancing Script', cursive !important;
	font-size:   1.5rem !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;
	color: #9b2335 !important;
	text-transform: none !important;
}
.mos-page .mos-script-kicker--light {
	color: rgba(255,255,255,.90) !important;
}
.mos-page .mos-values .mos-script-kicker {
	color: #fdf6e3 !important;
}
.mos-page .mos-script-kicker--center { text-align: center; }
