/**
 * Al-Ansar Redesign — About Strategy + History pages
 * Source: html/about-strategy.html, html/about-history.html
 */

.ar-about-page,
.ar-history-page{
	--emerald-900: var(--ar-emerald-900, #002F13);
	--emerald-800: var(--ar-emerald-800, #054B21);
	--emerald-700: var(--ar-emerald-700, #0B4A24);
	--emerald-600: var(--ar-emerald-600, #186939);
	--emerald-500: var(--ar-emerald-500, #348655);
	--gold-700: var(--ar-gold-700, #88734C);
	--gold-500: var(--ar-gold-500, #AB9671);
	--gold-300: var(--ar-gold-300, #CBBA9C);
	--gold-100: var(--ar-gold-100, #F1E5D0);
	--iron-900: var(--ar-iron-900, #262729);
	--iron-700: var(--ar-iron-700, #48494B);
	--iron-500: var(--ar-iron-500, #656769);
	--iron-300: var(--ar-iron-300, #85878A);
	--iron-200: #e2e2df;
	--iron-100: var(--ar-iron-100, #CECECE);
	--paper: var(--ar-paper, #FFFFFF);
	--paper-warm: var(--ar-paper-warm, #FBF9F6);
	--line: var(--ar-line, rgba(38,39,41,.09));
	--ease: var(--ar-ease, cubic-bezier(.16,.84,.44,1));
	--pad: var(--ar-pad, 80px);
	--shadow-soft: var(--ar-shadow-soft, 0 20px 60px -30px rgba(0,25,10,.18));
	--shadow-card: var(--ar-shadow-card, 0 12px 40px -20px rgba(0,25,10,.14));
	background: var(--paper);
}

.ar-about-page .ar-wrap,
.ar-history-page .ar-wrap{
	max-width: var(--ar-content, 1280px);
	margin: 0 auto;
	padding-inline: var(--pad);
}

.ar-about-page .ar-arrow-field,
.ar-history-page .ar-arrow-field{
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.ar-section-head{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	margin-bottom: 36px;
	flex-wrap: wrap;
}
.ar-section-head h2{
	font-size: clamp(36px, 4vw, 52px);
	margin-top: 14px;
	color: var(--iron-900);
	font-family: var(--ar-font-heading);
	font-weight: 800;
}
.ar-section-head p{
	color: var(--iron-500);
	font-size: 16px;
	max-width: 420px;
	line-height: 1.7;
	margin: 0;
}
@media (max-width: 900px){
	.ar-section-head{ flex-direction: column; align-items: flex-start; }
}

.ar-eyebrow{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--gold-700);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .04em;
}
.ar-eyebrow::before{
	content: '';
	width: 26px;
	height: 2px;
	background: var(--gold-500);
	border-radius: 2px;
}

.ar-gold-rule{
	width: 56px;
	height: 3px;
	background: var(--gold-500);
	border-radius: 10px;
}

.ar-about-page .ar-divider,
.ar-history-page .ar-divider{
	display: flex;
	align-items: center;
	gap: 18px;
	max-width: var(--ar-content, 1280px);
	margin: 0 auto;
	padding-inline: var(--pad);
}
.ar-about-page .ar-divider span,
.ar-history-page .ar-divider span{
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(171,150,113,.55) 50%, transparent);
}
.ar-about-page .ar-divider img,
.ar-history-page .ar-divider img{
	width: 13px;
	height: auto;
	opacity: .55;
	flex-shrink: 0;
}

.ar-badge-alt{ background: var(--paper-warm); }

/* ===== Intro ===== */
.ar-about-intro{ padding-block: 150px; }
.ar-intro-grid{
	display: grid;
	grid-template-columns: .92fr 1fr;
	align-items: center;
	gap: 90px;
	position: relative;
	z-index: 1;
}
.ar-intro-visual{ position: relative; }
.ar-intro-visual .ar-frame{
	position: relative;
	z-index: 1;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	height: 600px;
	border: 6px solid rgba(203,186,156,.28);
}
.ar-intro-visual .ar-frame img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s var(--ease);
}
.ar-intro-visual:hover .ar-frame img{ transform: scale(1.045); }
.ar-intro-badge{
	position: absolute;
	z-index: 2;
	bottom: -28px;
	inset-inline-start: -30px;
	background: var(--paper);
	border-radius: 18px;
	padding: 22px 28px;
	box-shadow: var(--shadow-soft);
	border-bottom: 3px solid var(--gold-500);
	text-align: center;
	min-width: 130px;
}
.ar-intro-badge span{
	display: block;
	font-size: 28px;
	font-weight: 800;
	color: var(--emerald-700);
}
.ar-intro-badge small{
	display: block;
	font-size: 11.5px;
	color: var(--iron-500);
	margin-top: 4px;
	font-weight: 700;
}
.ar-intro-text{ position: relative; z-index: 2; }
.ar-intro-text h2{
	font-size: clamp(32px, 3.8vw, 46px);
	color: var(--iron-900);
	margin-top: 16px;
	font-family: var(--ar-font-heading);
	font-weight: 800;
}
.ar-intro-text p{
	color: var(--iron-500);
	font-size: 16.5px;
	line-height: 1.95;
	margin-top: 24px;
	max-width: 520px;
}
.ar-intro-text p + p{ margin-top: 18px; }

/* ===== Vision & Mission ===== */
.ar-about-vision{ padding-block: 100px; }
.ar-vm-stack{
	display: flex;
	flex-direction: column;
	gap: 32px;
	position: relative;
	z-index: 1;
}
.ar-vm-panel{
	display: block;
	border-radius: 32px;
	overflow: hidden;
	position: relative;
	background: linear-gradient(135deg, var(--paper-warm) 0%, var(--paper) 60%);
	min-height: 0;
}
.ar-vm-panel.ar-dark{
	background: linear-gradient(135deg, var(--emerald-800) 0%, var(--emerald-900) 100%);
}
.ar-vm-panel .ar-arrow-field{
	background-image: url("../../images/redesign/pattern-tile-gold.svg");
	background-repeat: repeat;
	background-size: 90px 88px;
	opacity: .06;
}
.ar-vm-panel.ar-dark .ar-arrow-field{
	background-image: url("../../images/redesign/pattern-tile-gold.svg");
	background-repeat: repeat;
	background-size: 80px 78px;
	opacity: .05;
}
.ar-vm-num{
	position: absolute;
	top: 26px;
	inset-inline-start: 34px;
	font-size: 110px;
	font-weight: 800;
	line-height: 1;
	color: rgba(0,0,0,.05);
	z-index: 0;
}
.ar-vm-panel.ar-dark .ar-vm-num{ color: rgba(255,255,255,.06); }
.ar-vm-content{ position: relative; z-index: 2; padding: 56px 64px; }
.ar-vm-content .ar-eyebrow{ margin-bottom: 4px; }
.ar-vm-panel.ar-dark .ar-vm-content .ar-eyebrow{ color: var(--gold-300); }
.ar-vm-panel.ar-dark .ar-vm-content .ar-eyebrow::before{ background: var(--gold-300); }
.ar-vm-content h3{
	font-size: clamp(32px, 3.8vw, 46px);
	color: var(--iron-900);
	margin-top: 10px;
	font-family: var(--ar-font-heading);
	font-weight: 800;
}
.ar-vm-panel.ar-dark .ar-vm-content h3{ color: #fff; }
.ar-vm-content .ar-gold-rule{ margin: 20px 0; }
.ar-vm-content p{
	font-size: 15.5px;
	line-height: 1.95;
	color: var(--iron-500);
	max-width: 720px;
	margin: 0;
}
.ar-vm-panel.ar-dark .ar-vm-content p{ color: rgba(255,255,255,.68); }

/* ===== Values ===== */
.ar-values-dark{
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, var(--emerald-800) 0%, var(--emerald-900) 100%);
}
.ar-values-dark .ar-arrow-field{
	background-image: url("../../images/redesign/pattern-tile-tight.svg");
	background-repeat: repeat;
	background-size: 130px 125px;
	opacity: .02;
}
.ar-values-dark .ar-bigword{
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 0;
	font-size: min(22vw, 260px);
	font-weight: 800;
	color: rgba(255,255,255,.045);
	white-space: nowrap;
	pointer-events: none;
}
.ar-values-dark .ar-section-head{ position: relative; z-index: 2; }
.ar-values-dark .ar-section-head .ar-eyebrow{ color: var(--gold-300); }
.ar-values-dark .ar-section-head .ar-eyebrow::before{ background: var(--gold-300); }
.ar-values-dark .ar-section-head h2{ color: #fff; }
.ar-values-dark .ar-section-head p{ color: rgba(255,255,255,.6); }
.ar-values-dark .ar-wrap{ padding-block: 120px; }

.ar-values-poster-grid{
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 56px 40px;
}
@media (min-width: 1025px){
	.ar-values-poster-grid{
		grid-template-columns: repeat(6, 1fr);
	}
	.ar-values-poster-grid .ar-value-poster{
		grid-column: span 2;
	}
	.ar-values-poster-grid .ar-value-poster:nth-child(4){
		grid-column: 2 / span 2;
	}
	.ar-values-poster-grid .ar-value-poster:nth-child(5){
		grid-column: 4 / span 2;
	}
}
.ar-value-poster{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 22px;
	transition: transform .5s var(--ease);
}
.ar-value-poster:hover{ transform: translateY(-8px); }
.ar-vp-illus{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 190px;
}
.ar-vp-illus img,
.ar-vp-illus svg{
	width: 180px;
	height: 180px;
	display: block;
	object-fit: contain;
	transition: transform .6s var(--ease);
}
.ar-value-poster:hover .ar-vp-illus img,
.ar-value-poster:hover .ar-vp-illus svg{
	transform: scale(1.1);
}
.ar-vp-mark{
	width: 148px;
	height: 148px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 64px;
	font-weight: 800;
	color: var(--gold-300);
	background: rgba(255,255,255,.06);
	border: 1.5px solid rgba(203,186,156,.35);
	transition: transform .6s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.ar-value-poster:hover .ar-vp-mark{
	transform: scale(1.1);
	background: rgba(255,255,255,.1);
	border-color: var(--gold-500);
}
.ar-value-poster h4{
	color: #fff;
	font-size: 26px;
	font-weight: 800;
	text-align: center;
	margin: 0;
	font-family: var(--ar-font-heading);
}
.ar-vp-text{
	margin: 0;
	max-width: 18em;
	text-align: center;
	color: rgba(255,255,255,.72);
	font-size: 14.5px;
	line-height: 1.85;
	font-weight: 500;
}

/* ===== Partners ===== */
.ar-about-partners{
	position: relative;
	overflow: hidden;
	padding-block: 100px;
	background:
		radial-gradient(120% 80% at 50% 0%, rgba(24,105,57,.08) 0%, transparent 55%),
		var(--paper-warm, #F5F1EA);
}
.ar-partners-pattern{
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image: url('../../images/redesign/pattern-tile-gold.svg');
	background-repeat: repeat;
	background-size: 120px auto;
	opacity: .07;
}
.ar-partners-marquee{
	position: relative;
	z-index: 1;
	overflow: hidden;
	width: 100%;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.ar-partners-track{
	display: flex;
	width: max-content;
	align-items: center;
	animation: ar-partners-marquee 40s linear infinite;
	will-change: transform;
}
.ar-partners-marquee:hover .ar-partners-track{
	animation-play-state: paused;
}
.ar-partners-group{
	display: flex;
	align-items: center;
	gap: 28px;
	padding-inline: 14px;
	flex-shrink: 0;
}
.ar-partner-logo{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 220px;
	height: 112px;
	padding: 14px 18px;
	box-sizing: border-box;
	flex-shrink: 0;
	background: #fff;
	border: 1px solid rgba(24,105,57,.12);
	border-radius: 18px;
	box-shadow: 0 10px 28px -18px rgba(0,0,0,.25);
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.ar-partner-logo img{
	height: 82px !important;
	width: auto !important;
	max-width: 190px !important;
	max-height: 82px !important;
	object-fit: contain;
	filter: none !important;
	opacity: 1 !important;
	transition: transform .3s var(--ease);
}
.ar-partner-logo em{
	font-style: normal;
	font-weight: 800;
	font-size: 18px;
	color: var(--iron-700);
}
.ar-partner-logo:hover{
	transform: translateY(-3px);
	box-shadow: 0 16px 32px -18px rgba(0,0,0,.3);
}
.ar-partner-logo:hover img{ transform: scale(1.05); }
@keyframes ar-partners-marquee{
	from{ transform: translateX(0); }
	to{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
	.ar-partners-track{ animation: none; }
	.ar-partners-marquee{
		overflow-x: auto;
		-webkit-mask-image: none;
		mask-image: none;
	}
}

/* ===== Brand book CTA ===== */
.ar-about-brandbook{
	padding-block: 40px 80px;
}
.ar-brandbook-cta{
	position: relative;
	overflow: hidden;
	border-radius: 36px;
	background: linear-gradient(125deg, var(--emerald-700) 0%, var(--emerald-900) 75%);
	padding: 64px var(--pad);
	text-align: center;
}
.ar-bb-pattern{
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background-image: url("../../images/redesign/pattern-tile-gold.svg");
	background-repeat: repeat;
	background-size: 80px 78px;
	opacity: .05;
}
.ar-brandbook-cta h2{
	position: relative;
	z-index: 1;
	color: #fff;
	font-size: clamp(26px, 3vw, 38px);
	margin: 0;
	font-weight: 800;
	font-family: var(--ar-font-heading);
}
.ar-brandbook-lead{
	position: relative;
	z-index: 1;
	margin: 16px auto 0;
	max-width: 560px;
	color: rgba(255,255,255,.78);
	font-size: 16px;
	line-height: 1.8;
}
.ar-brandbook-actions{
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}
.ar-about-page .ar-btn-gold{
	background: var(--gold-500);
	color: var(--emerald-900);
	font-weight: 800;
}
.ar-about-page .ar-btn-gold:hover{
	background: var(--gold-300);
	transform: translateY(-2px);
}
.ar-brandbook-cta .ar-btn-ghost{
	background: transparent;
}
.ar-brandbook-embed{
	margin-top: 18px;
	border-radius: 24px;
	overflow: hidden;
	background: var(--emerald-900);
	border: 1px solid rgba(171,150,113,.35);
}
.ar-brandbook-embed[hidden]{ display: none !important; }
.ar-bb-embed-bar,
.ar-pdf-lb-bar{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding: 14px 18px;
	background: rgba(0,0,0,.22);
	color: #fff;
}
.ar-bb-embed-bar span,
.ar-pdf-lb-bar h3{
	font-family: var(--ar-font-heading);
	font-weight: 800;
	font-size: 15px;
	margin: 0;
	color: #fff;
}
.ar-bb-embed-actions,
.ar-pdf-lb-actions{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 14px;
}
.ar-bb-embed-actions a,
.ar-pdf-lb-actions a,
.ar-bb-text-btn{
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	color: var(--gold-300);
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}
.ar-bb-embed-actions a:hover,
.ar-pdf-lb-actions a:hover,
.ar-bb-text-btn:hover{
	color: #fff;
}
.ar-bb-embed-stage iframe,
.ar-pdf-lb-stage iframe{
	display: block;
	width: 100%;
	border: 0;
	background: #111;
}
.ar-bb-embed-stage iframe{
	height: min(80vh, 920px);
}
.ar-pdf-lightbox{
	position: fixed;
	inset: 0;
	z-index: 400;
	display: flex;
	flex-direction: column;
	background: rgba(2,10,5,.94);
	backdrop-filter: blur(10px);
	padding: 16px 16px 20px;
}
.ar-pdf-lightbox[hidden]{ display: none !important; }
.ar-pdf-lightbox .ar-pdf-lb-bar{
	border-radius: 16px 16px 0 0;
	flex-shrink: 0;
}
.ar-pdf-lb-stage{
	flex: 1;
	min-height: 0;
	border-radius: 0 0 16px 16px;
	overflow: hidden;
	background: #111;
}
.ar-pdf-lb-stage iframe{
	height: 100%;
}
.ar-pdf-lb-close{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,.12);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.ar-pdf-lb-close:hover{ background: rgba(255,255,255,.25); }
.ar-pdf-lb-close svg{ width: 18px; height: 18px; }
body.ar-pdf-open{ overflow: hidden; }

/* ===== Founding ===== */
.ar-history-founding{ padding-block: 80px 40px; }
.ar-founding-banner{
	position: relative;
	overflow: hidden;
	border-radius: 36px;
	background: linear-gradient(125deg, var(--emerald-700) 0%, var(--emerald-900) 75%);
	padding: 100px var(--pad);
	text-align: center;
}
.ar-founding-banner .ar-arrow-field{
	background-image: url("../../images/redesign/pattern-tile-gold.svg");
	background-repeat: repeat;
	background-size: 80px 78px;
	opacity: .05;
}
.ar-founding-banner .ar-bgyear{
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: min(30vw, 340px);
	font-weight: 800;
	color: rgba(255,255,255,.05);
	z-index: 0;
	line-height: 1;
	pointer-events: none;
	white-space: nowrap;
}
.ar-founding-banner .ar-content{ position: relative; z-index: 2; }
.ar-founding-banner .ar-eyebrow{ justify-content: center; color: var(--gold-300); }
.ar-founding-banner .ar-eyebrow::before{ background: var(--gold-300); }
.ar-founding-banner h2{
	color: #fff;
	font-size: clamp(32px, 3.8vw, 46px);
	margin-top: 16px;
	font-family: var(--ar-font-heading);
	font-weight: 800;
}
.ar-founding-banner p{
	color: rgba(255,255,255,.72);
	font-size: 16px;
	line-height: 1.9;
	max-width: 640px;
	margin: 22px auto 0;
}

.ar-founding-split{
	display: grid;
	grid-template-columns: .85fr 1.1fr;
	align-items: center;
	gap: 0;
	text-align: start;
	padding: 0 !important;
}
.ar-founding-photo{
	position: relative;
	z-index: 2;
	height: 400px;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	border: 3px solid rgba(203,186,156,.35);
	margin: 60px 40px 60px 60px;
}
.ar-founding-photo img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(.3) sepia(.16) contrast(1.05);
}
.ar-founding-split .ar-content{ padding: 70px 70px 70px 0; }
.ar-founding-split .ar-eyebrow{ justify-content: flex-start; }
.ar-founding-split h2{ text-align: start; max-width: 520px; }
.ar-founding-split p{ margin: 22px 0 0; text-align: start; max-width: 520px; }
.ar-founding-split .ar-gold-rule{ margin: 22px 0; }
.ar-founding-split .ar-bgyear{
	font-size: min(32vw, 400px);
	justify-content: flex-end;
	padding-inline-end: 30px;
}

/* ===== Timeline ===== */
.ar-history-timeline{
	position: relative;
	overflow: hidden;
	padding-block: 100px;
}
.ar-history-timeline .ar-arrow-field{
	background-image: url("../../images/redesign/pattern-timeline-dark.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 2000px auto;
	opacity: .05;
}
.ar-tl-rail-wrap{
	overflow-x: auto;
	scrollbar-width: none;
	position: relative;
	z-index: 1;
}
.ar-tl-rail-wrap::-webkit-scrollbar{ display: none; }
.ar-tl-rail{
	position: relative;
	display: flex;
	gap: 6px;
	padding: 20px 10px;
	width: max-content;
	min-width: 100%;
	justify-content: space-between;
}
.ar-tl-rail::before{
	content: '';
	position: absolute;
	top: 187px;
	inset-inline: 0;
	height: 3px;
	z-index: 0;
	background: linear-gradient(90deg, var(--gold-700), var(--gold-300) 50%, var(--gold-700));
	border-radius: 10px;
}
.ar-tl-stop{
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 184px;
	flex-shrink: 0;
}
.ar-tl-half{
	height: 150px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.ar-tl-half.ar-to-line{ justify-content: flex-end; }
.ar-tl-half.ar-from-line{ justify-content: flex-start; }
.ar-tl-dot{
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: var(--gold-500);
	border: 3px solid var(--paper-warm);
	margin: 10px 0;
	flex-shrink: 0;
	position: relative;
	transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.ar-tl-dot::after{
	content: '';
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 1.5px solid var(--gold-300);
	opacity: 0;
	transition: opacity .4s var(--ease), transform .4s var(--ease);
	transform: scale(.7);
}
.ar-tl-stop:hover .ar-tl-dot{
	transform: scale(1.25);
	box-shadow: 0 0 0 4px rgba(171,150,113,.18);
}
.ar-tl-stop:hover .ar-tl-dot::after{ opacity: 1; transform: scale(1); }
.ar-tl-medal{
	width: 88px;
	height: 88px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid var(--gold-300);
	box-shadow: var(--shadow-card);
	flex-shrink: 0;
	background: var(--emerald-800);
	transition: transform .5s var(--ease), border-color .5s var(--ease);
}
.ar-tl-medal img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s var(--ease);
}
.ar-tl-stop:hover .ar-tl-medal{
	transform: translateY(-4px) scale(1.05);
	border-color: var(--emerald-600);
}
.ar-tl-stop:hover .ar-tl-medal img{ transform: scale(1.12); }
.ar-tl-stem{
	width: 2px;
	height: 22px;
	background: var(--gold-300);
}
.ar-tl-year{
	font-weight: 800;
	color: var(--emerald-700);
	font-size: 17.5px;
	letter-spacing: .01em;
	transition: color .3s var(--ease);
}
.ar-tl-stop:hover .ar-tl-year{ color: var(--gold-700); }
.ar-tl-title{
	font-size: 13.5px;
	color: var(--iron-700);
	text-align: center;
	line-height: 1.65;
	max-width: 162px;
	margin-top: 7px;
}

/* ===== Achievements ===== */
.ar-history-achievements{ padding-block: 40px 80px; }
.ar-ach-banner{
	position: relative;
	overflow: hidden;
	border-radius: 36px;
	background: linear-gradient(125deg, var(--emerald-800) 0%, var(--emerald-900) 80%);
	padding: 80px var(--pad);
}
.ar-ach-banner .ar-arrow-field{
	background-image: url("../../images/redesign/pattern-tile-gold.svg");
	background-repeat: repeat;
	background-size: 120px 116px;
	opacity: .08;
}
.ar-ach-bigword{
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	z-index: 0;
	font-size: min(9vw, 90px);
	font-weight: 800;
	color: rgba(255,255,255,.05);
	padding-inline-end: 60px;
	pointer-events: none;
}
.ar-ach-inner-stack{ position: relative; z-index: 2; }
.ar-ach-copy-top{ max-width: 640px; margin-bottom: 36px; }
.ar-ach-copy-top .ar-eyebrow{ color: var(--gold-300); }
.ar-ach-copy-top .ar-eyebrow::before{ background: var(--gold-300); }
.ar-ach-copy-top h2{
	color: #fff;
	font-size: clamp(26px, 2.8vw, 36px);
	margin-top: 14px;
}
.ar-ach-copy-top p{
	color: rgba(255,255,255,.65);
	font-size: 15px;
	line-height: 1.9;
	margin-top: 16px;
}
.ar-ach-track{
	display: flex;
	gap: 26px;
	overflow-x: auto;
	scrollbar-width: none;
	padding: 10px 4px 20px;
	scroll-behavior: smooth;
}
.ar-ach-track::-webkit-scrollbar{ display: none; }
.ar-ach-card{
	position: relative;
	overflow: hidden;
	flex: 0 0 220px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 18px;
	text-align: center;
	background: rgba(255,255,255,.045);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 22px;
	padding: 34px 24px;
	transition: transform .45s var(--ease), background .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.ar-ach-card:hover{
	transform: translateY(-8px);
	background: rgba(255,255,255,.075);
	border-color: rgba(171,150,113,.55);
	box-shadow: 0 28px 56px -26px rgba(0,0,0,.55), 0 0 34px -8px rgba(171,150,113,.4);
}
.ar-ach-card .ar-trophy-watermark{
	position: absolute;
	inset-inline-end: -24px;
	bottom: -24px;
	width: 120px;
	height: 120px;
	opacity: .06;
	pointer-events: none;
	z-index: 0;
	color: #fff;
}
.ar-ach-card .ar-trophy-watermark img,
.ar-ach-card .ar-trophy-watermark svg{
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: brightness(0) invert(1);
}
.ar-ach-card .ar-trophy{
	position: relative;
	z-index: 1;
	width: 120px;
	height: 120px;
	margin: 0;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-300);
}
.ar-ach-card .ar-trophy svg{
	width: 100%;
	height: 100%;
	stroke: var(--gold-300);
	filter: drop-shadow(0 8px 16px rgba(171,150,113,.4));
}
.ar-ach-card .ar-trophy img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 10px 18px rgba(171,150,113,.45));
}
.ar-ach-cup-meta{
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	max-width: 12em;
}
.ar-ach-cup-year{
	color: var(--gold-300);
	font-size: 18px;
	font-weight: 800;
	letter-spacing: .02em;
	line-height: 1;
}
.ar-ach-cup-label{
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
}

.ar-values-nav{
	display: flex;
	justify-content: flex-start;
	gap: 14px;
	margin-top: 10px;
	position: relative;
	z-index: 2;
}
.ar-values-nav button{
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.25);
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	cursor: pointer;
	transition: background .3s var(--ease), border-color .3s var(--ease);
}
.ar-values-nav button:hover{
	background: rgba(255,255,255,.1);
	border-color: var(--gold-300);
}
.ar-values-nav button svg{ width: 18px; height: 18px; }

/* ===== Championships ===== */
.ar-history-champs{ padding-block: 80px 120px; }
.ar-champs-toggle{
	display: flex;
	gap: 10px;
	margin-top: 26px;
}
.ar-champs-toggle button{
	font-family: inherit;
	font-size: 13.5px;
	font-weight: 700;
	padding: 9px 20px;
	border-radius: 999px;
	border: 1.5px solid var(--iron-200);
	background: #fff;
	color: var(--iron-700);
	cursor: pointer;
	transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.ar-champs-toggle button.active{
	background: var(--emerald-700);
	border-color: var(--emerald-700);
	color: #fff;
}
.ar-champs-view{ display: none; margin-top: 36px; }
.ar-champs-view.active{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.ar-champs-card{
	background: #fff;
	border: 1px solid var(--iron-200, #eceae3);
	border-radius: 18px;
	padding: 24px;
}
.ar-champs-card h4{
	font-family: 'Al Madinah', var(--ar-font-heading, sans-serif);
	font-size: 16.5px;
	color: var(--iron-900);
	margin: 0 0 14px;
	line-height: 1.5;
}
.ar-champs-card ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.ar-champs-card li{
	font-size: 13.5px;
	color: var(--iron-500);
	border-top: 1px dashed var(--iron-200, #eceae3);
	padding-top: 8px;
}
.ar-champs-card li:first-child{ border-top: none; padding-top: 0; }
.ar-champs-year-card{
	background: #fff;
	border: 1px solid var(--iron-200, #eceae3);
	border-radius: 18px;
	padding: 22px 24px;
	display: flex;
	align-items: baseline;
	gap: 16px;
}
.ar-champs-year-card .ar-yr{
	font-family: 'Al Madinah', var(--ar-font-heading, sans-serif);
	font-weight: 800;
	font-size: 22px;
	color: var(--gold-700);
	min-width: 64px;
}
.ar-champs-year-card ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.ar-champs-year-card li{
	font-size: 13.5px;
	color: var(--iron-700);
}

/* ===== Responsive ===== */
@media (max-width: 1180px){
	.ar-intro-text{ margin-inline-start: 0; }
}
@media (max-width: 1024px){
	.ar-about-intro{ padding-block: 100px; }
	.ar-values-poster-grid{ grid-template-columns: repeat(2, 1fr); }
	.ar-about-vision,
	.ar-about-partners,
	.ar-about-brandbook,
	.ar-history-timeline,
	.ar-history-champs{ padding-block: 72px; }
}
@media (max-width: 900px){
	.ar-intro-grid{ grid-template-columns: 1fr; gap: 56px; }
	.ar-intro-visual .ar-frame{ height: 420px; }
	.ar-intro-badge{ inset-inline-start: 16px; bottom: -20px; }
	.ar-vm-content{ padding: 44px 32px; }
	.ar-founding-split{ grid-template-columns: 1fr; }
	.ar-founding-photo{ margin: 50px auto 0; height: 280px; width: 88%; }
	.ar-founding-split .ar-content{ padding: 36px var(--pad) 60px; text-align: center; }
	.ar-founding-split .ar-eyebrow{ justify-content: center; }
	.ar-founding-split h2,
	.ar-founding-split p{ text-align: center; margin-inline: auto; }
	.ar-ach-bigword{ justify-content: center; padding-inline-end: 0; }
	.ar-champs-view.active{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px){
	.ar-tl-rail{ gap: 24px; }
	.ar-tl-stop{ width: 150px; }
}
@media (max-width: 640px){
	.ar-about-intro{ padding-block: 72px; }
	.ar-values-dark .ar-wrap{ padding-block: 80px; }
	.ar-values-poster-grid{ grid-template-columns: 1fr; }
	.ar-intro-visual .ar-frame{ height: 320px; }
	.ar-ach-card{ flex-basis: 180px; }
	.ar-ach-card .ar-trophy{ width: 96px; height: 96px; }
	.ar-champs-view.active{ grid-template-columns: 1fr; }
	.ar-brandbook-cta{ padding: 48px 22px; }
	.ar-brandbook-actions .ar-btn{ width: 100%; justify-content: center; }
	.ar-bb-embed-stage iframe{ height: 70vh; }
}
@media (max-width: 560px){
	.ar-ach-card{ flex-basis: 160px; gap: 12px; padding: 22px 14px; }
}

@media (prefers-reduced-motion: reduce){
	.ar-about-page *,
	.ar-history-page *{
		animation: none !important;
		transition: none !important;
	}
	.ar-ach-track{ scroll-behavior: auto; }
}
