/* =========================================================================
   ARL Facility Services — theme stylesheet
   1. Tokens      5. Hero            9. Forms
   2. Base        6. Sections       10. Footer
   3. Layout      7. Components     11. Utilities & motion
   4. Header      8. Page hero      12. Responsive
   ====================================================================== */

/* ------------------------------------------------------------------ 1. Tokens */

:root {
	--navy-950: #05132e;
	--navy-900: #071c3f;
	--navy-800: #0b2650;
	--navy-700: #0f3168;
	--navy-600: #16407f;
	--navy-100: #e8eef8;

	--yellow: #ffc629;
	--yellow-400: #ffd45c;
	--yellow-600: #eaa900;
	--yellow-050: #fff8e2;

	--ink: #0f172a;
	--body: #4a5568;
	--muted: #6b7688;
	--line: #e4e9f0;
	--line-soft: #eef2f7;
	--surface: #ffffff;
	--surface-soft: #f6f8fb;
	--surface-tint: #f0f4fa;

	--radius-sm: 10px;
	--radius: 16px;
	--radius-lg: 24px;
	--radius-xl: 32px;

	--shadow-xs: 0 1px 2px rgba(7, 28, 63, .06);
	--shadow-sm: 0 4px 16px rgba(7, 28, 63, .06);
	--shadow: 0 12px 32px rgba(7, 28, 63, .09);
	--shadow-lg: 0 28px 64px rgba(7, 28, 63, .16);

	--font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
	--font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

	--container: 1200px;
	--gutter: 24px;
	--header-h: 84px;
	--ease: cubic-bezier(.22, 1, .36, 1);
}

/* ------------------------------------------------------------------ 2. Base */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.7;
	color: var(--body);
	background: var(--surface);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

body.arl-no-scroll { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-head);
	color: var(--ink);
	line-height: 1.18;
	letter-spacing: -.02em;
	margin: 0 0 .6em;
	font-weight: 800;
	text-wrap: balance;
}

h1 { font-size: clamp(2.15rem, 1.35rem + 3.4vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 1.2rem + 2.3vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + .8vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy-600); }

img, svg, video { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1.15em; padding-left: 1.25em; }
li { margin-bottom: .4em; }
strong { color: var(--ink); font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

blockquote {
	margin: 2rem 0;
	padding: 1.25rem 1.5rem;
	border-left: 4px solid var(--yellow);
	background: var(--surface-soft);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-size: 1.08rem;
	color: var(--ink);
}

:focus-visible {
	outline: 3px solid var(--yellow);
	outline-offset: 3px;
	border-radius: 4px;
}

::selection { background: var(--yellow); color: var(--navy-900); }

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

.arl-skip {
	position: absolute;
	top: -100px; left: 16px;
	z-index: 999;
	background: var(--yellow);
	color: var(--navy-900);
	font-weight: 700;
	padding: 12px 20px;
	border-radius: 0 0 var(--radius-sm) var(--radius-sm);
	text-decoration: none;
	transition: top .2s var(--ease);
}
.arl-skip:focus { top: 0; }

.arl-icon { width: 20px; height: 20px; flex: 0 0 auto; }

/* ------------------------------------------------------------------ 3. Layout */

.arl-container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.arl-section { padding: clamp(64px, 8vw, 112px) 0; }
.arl-section--soft { background: var(--surface-soft); }
.arl-section--tint { background: var(--surface-tint); }
.arl-section--tight { padding: clamp(48px, 6vw, 80px) 0; }

.arl-section--dark {
	background: var(--navy-900);
	color: rgba(255, 255, 255, .78);
}
.arl-section--dark h2,
.arl-section--dark h3 { color: #fff; }

.arl-sechead {
	max-width: 760px;
	margin-bottom: clamp(40px, 5vw, 60px);
}
.arl-sechead--center { margin-inline: auto; text-align: center; }
.arl-sechead p { font-size: 1.075rem; }
.arl-sechead h2 { margin-bottom: .45em; }

.arl-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-head);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--navy-700);
	margin: 0 0 14px;
}
.arl-eyebrow::before {
	content: "";
	width: 26px; height: 3px;
	background: var(--yellow);
	border-radius: 2px;
}
.arl-eyebrow--light { color: var(--yellow); }
.arl-sechead--center .arl-eyebrow { justify-content: center; }

/* ------------------------------------------------------------------ 4. Buttons */

.arl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--font-head);
	font-size: .97rem;
	font-weight: 700;
	line-height: 1;
	padding: 15px 26px;
	border: 2px solid transparent;
	border-radius: 999px;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease),
	            background-color .2s ease, color .2s ease, border-color .2s ease;
}
.arl-btn:hover { transform: translateY(-2px); }
.arl-btn:active { transform: translateY(0); }
.arl-btn .arl-icon { width: 18px; height: 18px; }

.arl-btn--primary {
	background: var(--yellow);
	color: var(--navy-900);
	box-shadow: 0 8px 22px rgba(255, 198, 41, .34);
}
.arl-btn--primary:hover {
	background: var(--yellow-400);
	color: var(--navy-900);
	box-shadow: 0 14px 30px rgba(255, 198, 41, .42);
}

.arl-btn--dark { background: var(--navy-800); color: #fff; }
.arl-btn--dark:hover { background: var(--navy-700); color: #fff; }

.arl-btn--ghost {
	background: rgba(255, 255, 255, .08);
	border-color: rgba(255, 255, 255, .35);
	color: #fff;
	backdrop-filter: blur(6px);
}
.arl-btn--ghost:hover {
	background: rgba(255, 255, 255, .16);
	border-color: #fff;
	color: #fff;
}

.arl-btn--outline {
	border-color: var(--line);
	color: var(--navy-800);
	background: #fff;
}
.arl-btn--outline:hover { border-color: var(--navy-800); color: var(--navy-800); }

.arl-btn--lg { padding: 18px 32px; font-size: 1.02rem; }
.arl-btn--block { width: 100%; }

/* ------------------------------------------------------------------ 5. Header */

.arl-header {
	position: absolute;
	inset: 0 0 auto;
	z-index: 90;
}

.arl-topbar {
	border-bottom: 1px solid rgba(255, 255, 255, .14);
	font-size: .855rem;
	color: rgba(255, 255, 255, .82);
}
.arl-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 46px;
}
.arl-topbar__tag {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	font-weight: 500;
}
.arl-topbar__tag .arl-icon { width: 17px; height: 17px; color: var(--yellow); }
.arl-topbar__links { display: flex; align-items: center; gap: 26px; }
.arl-topbar__links a,
.arl-topbar__area {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: inherit;
	text-decoration: none;
	transition: color .2s ease;
}
.arl-topbar__links a:hover { color: var(--yellow); }
.arl-topbar__links .arl-icon { width: 16px; height: 16px; color: var(--yellow); }

.arl-nav__inner {
	display: flex;
	align-items: center;
	gap: 32px;
	min-height: var(--header-h);
}
.arl-nav__brand { margin-right: auto; }
.arl-nav__actions { display: flex; align-items: center; gap: 14px; }

/* Sticky state */
.arl-header.is-stuck {
	position: fixed;
	background: var(--navy-900);
	box-shadow: 0 8px 30px rgba(5, 19, 46, .28);
	animation: arl-drop .35s var(--ease);
}
.arl-header.is-stuck .arl-topbar { display: none; }
.arl-header.is-stuck .arl-nav__inner { min-height: 72px; }

@keyframes arl-drop {
	from { transform: translateY(-100%); }
	to { transform: translateY(0); }
}

/* Logo */
.arl-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--yellow);
}
.arl-logo__mark { width: 44px; height: 44px; flex: 0 0 auto; }
.arl-logo__mark svg { width: 100%; height: 100%; }
.arl-logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.arl-logo__name {
	font-family: var(--font-head);
	font-size: 1.42rem;
	font-weight: 800;
	letter-spacing: .01em;
	color: #fff;
}
.arl-logo__sub {
	font-size: .705rem;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--yellow);
}

/* Menu */
.arl-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.arl-menu li { position: relative; margin: 0; }
.arl-menu > li > a {
	display: block;
	padding: 11px 15px;
	font-family: var(--font-head);
	font-size: .95rem;
	font-weight: 600;
	color: rgba(255, 255, 255, .88);
	text-decoration: none;
	border-radius: 999px;
	transition: color .2s ease, background-color .2s ease;
}
.arl-menu > li > a:hover,
.arl-menu > li.current-menu-item > a,
.arl-menu > li.current-menu-ancestor > a,
.arl-menu > li.current_page_item > a,
.arl-menu > li.current_page_parent > a {
	color: var(--navy-900);
	background: var(--yellow);
}
.arl-menu > li.menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 6px; height: 6px;
	margin-left: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	opacity: .7;
}

/* Dropdown */
.arl-menu .sub-menu {
	position: absolute;
	top: calc(100% + 10px); left: 0;
	min-width: 250px;
	list-style: none;
	margin: 0; padding: 8px;
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.arl-menu li:hover > .sub-menu,
.arl-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.arl-menu .sub-menu a {
	display: block;
	padding: 11px 14px;
	font-size: .93rem;
	font-weight: 600;
	color: var(--navy-800);
	text-decoration: none;
	border-radius: var(--radius-sm);
	transition: background-color .18s ease, color .18s ease;
}
.arl-menu .sub-menu a:hover { background: var(--yellow-050); color: var(--navy-900); }

/* Burger + drawer */
.arl-burger {
	display: none;
	align-items: center;
	justify-content: center;
	width: 46px; height: 46px;
	padding: 0;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 12px;
	color: #fff;
	cursor: pointer;
}
.arl-burger .arl-icon { width: 22px; height: 22px; }
.arl-burger__close { display: none; }
.arl-burger[aria-expanded="true"] .arl-burger__open { display: none; }
.arl-burger[aria-expanded="true"] .arl-burger__close { display: block; }

.arl-drawer {
	position: fixed;
	inset: 0;
	z-index: 95;
	background: rgba(5, 19, 46, .6);
	backdrop-filter: blur(4px);
}
.arl-drawer[hidden] { display: none; }
.arl-drawer__panel {
	position: absolute;
	inset: 0 0 0 auto;
	width: min(370px, 88vw);
	background: var(--navy-900);
	padding: 96px 26px 32px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 24px;
	animation: arl-slide .3s var(--ease);
}
@keyframes arl-slide {
	from { transform: translateX(100%); }
	to { transform: translateX(0); }
}
.arl-drawer__menu { list-style: none; margin: 0; padding: 0; }
.arl-drawer__menu li { margin: 0; }
.arl-drawer__menu a {
	display: block;
	padding: 14px 4px;
	font-family: var(--font-head);
	font-size: 1.06rem;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.arl-drawer__menu a:hover { color: var(--yellow); }
.arl-drawer__menu .sub-menu {
	list-style: none;
	margin: 0 0 8px;
	padding: 0 0 0 14px;
}
.arl-drawer__menu .sub-menu a {
	font-size: .93rem;
	font-weight: 500;
	padding: 10px 4px;
	color: rgba(255, 255, 255, .74);
	border-bottom: 0;
}
.arl-drawer__foot { display: grid; gap: 12px; margin-top: auto; }

/* ------------------------------------------------------------------ 6. Hero */

.arl-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: min(92vh, 880px);
	padding: calc(var(--header-h) + 90px) 0 clamp(80px, 9vw, 130px);
	background: var(--navy-950);
	overflow: hidden;
	isolation: isolate;
}
.arl-hero__media { position: absolute; inset: 0; z-index: -2; }
.arl-hero__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: 60% center;
}
.arl-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(102deg, rgba(5, 19, 46, .96) 0%, rgba(7, 28, 63, .9) 42%, rgba(7, 28, 63, .55) 68%, rgba(7, 28, 63, .35) 100%),
		linear-gradient(to top, rgba(5, 19, 46, .85), transparent 45%);
}
.arl-hero__glow {
	position: absolute;
	z-index: -1;
	width: 620px; height: 620px;
	right: -140px; top: -180px;
	background: radial-gradient(circle, rgba(255, 198, 41, .22), transparent 68%);
	pointer-events: none;
}

.arl-hero__inner { position: relative; max-width: 700px; color: rgba(255, 255, 255, .84); }
.arl-hero__title { color: #fff; margin-bottom: .35em; }
.arl-hero__title em {
	font-style: normal;
	color: var(--yellow);
	position: relative;
	white-space: nowrap;
}
.arl-hero__text {
	font-size: clamp(1.03rem, .98rem + .3vw, 1.2rem);
	max-width: 620px;
	margin-bottom: 34px;
}
.arl-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.arl-hero__points {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.arl-hero__points li {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	font-size: .93rem;
	font-weight: 500;
	color: rgba(255, 255, 255, .9);
}
.arl-hero__points .arl-icon {
	width: 18px; height: 18px;
	padding: 3px;
	border-radius: 50%;
	background: var(--yellow);
	color: var(--navy-900);
	stroke-width: 3;
}

/* Stats strip that overlaps the hero */
.arl-statsbar { position: relative; margin-top: -64px; z-index: 5; }
.arl-statsbar__inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}
.arl-stat {
	padding: 32px 26px;
	text-align: center;
	border-right: 1px solid var(--line-soft);
}
.arl-stat:last-child { border-right: 0; }
.arl-stat__num {
	display: block;
	font-family: var(--font-head);
	font-size: clamp(1.9rem, 1.5rem + 1.4vw, 2.6rem);
	font-weight: 800;
	color: var(--navy-800);
	line-height: 1;
	margin-bottom: 8px;
}
.arl-stat__num span { color: var(--yellow-600); }
.arl-stat__label {
	font-size: .87rem;
	font-weight: 500;
	color: var(--muted);
	margin: 0;
}

/* ------------------------------------------------------------------ 7. Components */

/* Service cards */
.arl-grid { display: grid; gap: 26px; }
.arl-grid--2 { grid-template-columns: repeat(2, 1fr); }
.arl-grid--3 { grid-template-columns: repeat(3, 1fr); }
.arl-grid--4 { grid-template-columns: repeat(4, 1fr); }

.arl-svc {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}
.arl-svc:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: transparent;
}
.arl-svc__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--navy-800);
}
.arl-svc__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .6s var(--ease);
}
.arl-svc:hover .arl-svc__media img { transform: scale(1.07); }
.arl-svc__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(7, 28, 63, .55), transparent 55%);
}
.arl-svc__icon {
	position: absolute;
	left: 20px; bottom: -26px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 56px; height: 56px;
	background: var(--yellow);
	color: var(--navy-900);
	border-radius: 16px;
	box-shadow: 0 10px 24px rgba(255, 198, 41, .38);
}
.arl-svc__icon .arl-icon { width: 26px; height: 26px; }
.arl-svc__body { padding: 44px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.arl-svc__title { font-size: 1.28rem; margin-bottom: .5em; }
.arl-svc__title a { color: inherit; text-decoration: none; }
.arl-svc__title a::after { content: ""; position: absolute; inset: 0; }
.arl-svc__text { font-size: .965rem; margin-bottom: 20px; }
.arl-svc__more {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-head);
	font-size: .9rem;
	font-weight: 700;
	color: var(--navy-700);
}
.arl-svc__more .arl-icon { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.arl-svc:hover .arl-svc__more { color: var(--yellow-600); }
.arl-svc:hover .arl-svc__more .arl-icon { transform: translateX(5px); }

/* Split (media + copy) */
.arl-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(36px, 5vw, 72px);
	align-items: center;
}
.arl-split--reverse .arl-split__media { order: 2; }

.arl-split__media { position: relative; }
.arl-split__media img {
	width: 100%;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.arl-split__media--stack { padding: 0 30px 30px 0; }
.arl-split__media--stack .arl-split__second {
	position: absolute;
	right: 0; bottom: 0;
	width: 52%;
	border: 8px solid #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.arl-split__badge {
	position: absolute;
	left: -18px; top: 32px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 22px;
	background: var(--yellow);
	color: var(--navy-900);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	max-width: 230px;
}
.arl-split__badge strong {
	display: block;
	font-family: var(--font-head);
	font-size: 1.7rem;
	line-height: 1;
	color: var(--navy-900);
}
.arl-split__badge span { font-size: .8rem; font-weight: 600; line-height: 1.3; }

/* Check lists */
.arl-checklist {
	list-style: none;
	margin: 0 0 1.5em;
	padding: 0;
	display: grid;
	gap: 12px 26px;
}
.arl-checklist--2 { grid-template-columns: repeat(2, 1fr); }
.arl-checklist--3 { grid-template-columns: repeat(3, 1fr); }
.arl-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	margin: 0;
	font-size: .97rem;
	line-height: 1.55;
}
.arl-checklist .arl-icon {
	width: 20px; height: 20px;
	flex: 0 0 auto;
	margin-top: 2px;
	padding: 3px;
	border-radius: 50%;
	background: var(--yellow-050);
	color: var(--yellow-600);
	stroke-width: 3.2;
}
.arl-section--dark .arl-checklist .arl-icon {
	background: rgba(255, 198, 41, .16);
	color: var(--yellow);
}
.arl-section--dark .arl-checklist li { color: rgba(255, 255, 255, .84); }

/* Feature tiles */
.arl-feature {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}
.arl-feature:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow);
	border-color: transparent;
}
.arl-feature__icon {
	display: grid;
	place-items: center;
	width: 54px; height: 54px;
	margin-bottom: 20px;
	border-radius: 15px;
	background: var(--yellow-050);
	color: var(--yellow-600);
}
.arl-feature__icon .arl-icon { width: 25px; height: 25px; }
.arl-feature h3 { font-size: 1.14rem; margin-bottom: .5em; }
.arl-feature p { font-size: .95rem; margin: 0; }

.arl-section--dark .arl-feature {
	background: rgba(255, 255, 255, .045);
	border-color: rgba(255, 255, 255, .1);
}
.arl-section--dark .arl-feature:hover { background: rgba(255, 255, 255, .075); }
.arl-section--dark .arl-feature__icon {
	background: rgba(255, 198, 41, .14);
	color: var(--yellow);
}
.arl-section--dark .arl-feature p { color: rgba(255, 255, 255, .7); }

/* Process steps */
.arl-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: arl-step;
}
.arl-steps li {
	position: relative;
	margin: 0;
	padding: 30px 26px 28px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.arl-steps li:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.arl-steps li::before {
	counter-increment: arl-step;
	content: counter(arl-step, decimal-leading-zero);
	display: block;
	font-family: var(--font-head);
	font-size: 2.25rem;
	font-weight: 800;
	line-height: 1;
	color: var(--yellow);
	margin-bottom: 14px;
}
.arl-steps h3 { font-size: 1.1rem; margin-bottom: .45em; }
.arl-steps p { font-size: .94rem; margin: 0; }

/* Areas / pill list */
.arl-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.arl-pills li {
	margin: 0;
	padding: 9px 18px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: .91rem;
	font-weight: 500;
	color: var(--navy-800);
	transition: background-color .2s ease, border-color .2s ease, transform .2s var(--ease);
}
.arl-pills li:hover {
	background: var(--yellow-050);
	border-color: var(--yellow);
	transform: translateY(-2px);
}
.arl-section--dark .arl-pills li {
	background: rgba(255, 255, 255, .06);
	border-color: rgba(255, 255, 255, .14);
	color: rgba(255, 255, 255, .88);
}
.arl-section--dark .arl-pills li:hover {
	background: rgba(255, 198, 41, .16);
	border-color: var(--yellow);
}

/* Accordion-ish detail panels */
.arl-panel {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 32px 30px;
	height: 100%;
}
.arl-panel h3 {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 1.12rem;
	margin-bottom: .8em;
}
.arl-panel h3 .arl-icon {
	width: 22px; height: 22px;
	padding: 5px;
	box-sizing: content-box;
	border-radius: 10px;
	background: var(--yellow-050);
	color: var(--yellow-600);
}
.arl-panel .arl-checklist { margin-bottom: 0; }

/* CTA band */
.arl-ctaband {
	position: relative;
	padding: clamp(56px, 6vw, 84px) 0;
	background:
		radial-gradient(900px 420px at 12% 0%, rgba(255, 198, 41, .16), transparent 60%),
		linear-gradient(120deg, var(--navy-900), var(--navy-700));
	overflow: hidden;
}
.arl-ctaband::after {
	content: "";
	position: absolute;
	right: -80px; bottom: -120px;
	width: 380px; height: 380px;
	border: 44px solid rgba(255, 255, 255, .045);
	border-radius: 50%;
}
.arl-ctaband__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}
.arl-ctaband__copy { max-width: 600px; color: rgba(255, 255, 255, .78); }
.arl-ctaband__copy h2 { color: #fff; margin-bottom: .4em; }
.arl-ctaband__copy p { margin: 0; }
.arl-ctaband__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Info cards (contact details) */
.arl-infocard {
	display: flex;
	gap: 16px;
	padding: 24px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.arl-infocard:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.arl-infocard__icon {
	display: grid;
	place-items: center;
	width: 46px; height: 46px;
	flex: 0 0 auto;
	border-radius: 13px;
	background: var(--navy-800);
	color: var(--yellow);
}
.arl-infocard h3 { font-size: 1rem; margin-bottom: .25em; }
.arl-infocard p, .arl-infocard a { font-size: .95rem; margin: 0; word-break: break-word; }
.arl-infocard a { color: var(--navy-700); font-weight: 600; text-decoration: none; }
.arl-infocard a:hover { text-decoration: underline; }

/* ------------------------------------------------------------------ 8. Page hero */

.arl-pagehero {
	position: relative;
	padding: calc(var(--header-h) + 92px) 0 clamp(64px, 7vw, 96px);
	background: var(--navy-900);
	overflow: hidden;
	isolation: isolate;
}
.arl-pagehero__media { position: absolute; inset: 0; z-index: -1; }
.arl-pagehero__media img { width: 100%; height: 100%; object-fit: cover; }
.arl-pagehero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, rgba(5, 19, 46, .96) 0%, rgba(7, 28, 63, .9) 48%, rgba(7, 28, 63, .62) 100%);
}
.arl-pagehero__inner { position: relative; max-width: 760px; color: rgba(255, 255, 255, .8); }
.arl-pagehero__title { color: #fff; margin-bottom: .35em; }
.arl-pagehero__text { font-size: 1.08rem; max-width: 640px; margin-bottom: 30px; }
.arl-pagehero__actions { display: flex; flex-wrap: wrap; gap: 13px; }

.arl-crumbs { margin-bottom: 22px; font-size: .86rem; }
.arl-crumbs ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.arl-crumbs li { margin: 0; display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, .6); }
.arl-crumbs li + li::before { content: "/"; color: rgba(255, 255, 255, .35); }
.arl-crumbs a { color: rgba(255, 255, 255, .75); text-decoration: none; }
.arl-crumbs a:hover { color: var(--yellow); }
.arl-crumbs [aria-current] { color: var(--yellow); font-weight: 600; }

/* Long-form content */
.arl-prose { max-width: 780px; }
.arl-prose h2 { margin-top: 1.8em; }
.arl-prose h3 { margin-top: 1.5em; }
.arl-prose > :first-child { margin-top: 0; }
.arl-prose ul, .arl-prose ol { padding-left: 1.3em; }
.arl-prose li { margin-bottom: .5em; }
.arl-prose img { border-radius: var(--radius); }
.arl-lead { font-size: 1.14rem; color: var(--ink); line-height: 1.62; }

/* ------------------------------------------------------------------ 9. Forms */

.arl-form {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: clamp(26px, 3.5vw, 40px);
	box-shadow: var(--shadow-sm);
}
.arl-form__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 20px; }
.arl-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.arl-field { margin: 0 0 18px; display: flex; flex-direction: column; gap: 7px; }
.arl-form__grid .arl-field { margin: 0; }
.arl-field label {
	font-family: var(--font-head);
	font-size: .88rem;
	font-weight: 700;
	color: var(--ink);
}
.arl-field label span { color: var(--yellow-600); }

.arl-field input,
.arl-field select,
.arl-field textarea,
.arl-search input[type="search"] {
	width: 100%;
	font-family: inherit;
	font-size: .97rem;
	color: var(--ink);
	background: var(--surface-soft);
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 13px 15px;
	transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.arl-field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.arl-field select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%236b7688' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 15px center;
	padding-right: 42px;
}
.arl-field input:focus,
.arl-field select:focus,
.arl-field textarea:focus {
	outline: none;
	background: #fff;
	border-color: var(--yellow);
	box-shadow: 0 0 0 4px rgba(255, 198, 41, .2);
}
.arl-field input::placeholder,
.arl-field textarea::placeholder { color: #9aa5b5; }

.arl-form__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px 22px;
	margin: 26px 0 0;
	padding-top: 24px;
	border-top: 1px solid var(--line-soft);
}
.arl-form__note { font-size: .84rem; color: var(--muted); max-width: 330px; line-height: 1.5; }

.arl-notice {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	padding: 17px 20px;
	margin-bottom: 24px;
	border-radius: var(--radius);
	font-size: .96rem;
	border: 1px solid transparent;
}
.arl-notice p { margin: 0; }
.arl-notice .arl-icon { flex: 0 0 auto; margin-top: 3px; stroke-width: 2.6; }
.arl-notice--success {
	background: #ecfdf3;
	border-color: #b7ecc9;
	color: #10693a;
}
.arl-notice--success .arl-icon { color: #12a154; }
.arl-notice--error {
	background: #fef3f2;
	border-color: #fcd6d2;
	color: #9a2a20;
}
.arl-notice--error .arl-icon { color: #d9483b; }

.arl-search { display: flex; gap: 10px; max-width: 480px; }
.arl-search input[type="search"] { flex: 1; }

/* ------------------------------------------------------------------ 10. Footer */

.arl-footer {
	background: var(--navy-950);
	color: rgba(255, 255, 255, .68);
	font-size: .95rem;
}
.arl-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.25fr;
	gap: 44px 36px;
	padding: clamp(56px, 6vw, 84px) var(--gutter) clamp(40px, 4vw, 56px);
}
.arl-footer__desc { margin: 22px 0 24px; max-width: 360px; }

.arl-footer__badges {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	display: grid;
	gap: 10px;
}
.arl-footer__badges li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-size: .89rem;
	color: rgba(255, 255, 255, .78);
}
.arl-footer__badges .arl-icon { width: 18px; height: 18px; color: var(--yellow); }

.arl-footer__social { display: flex; gap: 10px; list-style: none; margin: 0; padding: 0; }
.arl-footer__social li { margin: 0; }
.arl-footer__social a {
	display: grid;
	place-items: center;
	width: 40px; height: 40px;
	border-radius: 12px;
	background: rgba(255, 255, 255, .07);
	color: #fff;
	transition: background-color .2s ease, color .2s ease, transform .2s var(--ease);
}
.arl-footer__social a:hover {
	background: var(--yellow);
	color: var(--navy-900);
	transform: translateY(-3px);
}

.arl-footer__title {
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 20px;
}
.arl-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.arl-footer__list li { margin: 0; }
.arl-footer__list a {
	color: rgba(255, 255, 255, .7);
	text-decoration: none;
	transition: color .2s ease, padding-left .2s var(--ease);
}
.arl-footer__list a:hover { color: var(--yellow); padding-left: 5px; }

.arl-footer__list--contact li { display: flex; gap: 12px; align-items: flex-start; }
.arl-footer__list--contact .arl-icon { width: 18px; height: 18px; margin-top: 4px; color: var(--yellow); flex: 0 0 auto; }
.arl-footer__hours span { font-size: .89rem; line-height: 1.75; }

.arl-footer__bar {
	border-top: 1px solid rgba(255, 255, 255, .1);
	font-size: .85rem;
	color: rgba(255, 255, 255, .5);
}
.arl-footer__bar-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 28px;
	padding-block: 22px;
}
.arl-footer__bar p { margin: 0; }
.arl-footer__abn { margin-left: 10px; padding-left: 12px; border-left: 1px solid rgba(255, 255, 255, .2); }

.arl-footer .arl-logo__sub { color: var(--yellow); }

/* Mobile call bar */
.arl-mobilebar {
	position: fixed;
	inset: auto 0 0;
	z-index: 80;
	display: none;
	background: var(--navy-900);
	border-top: 1px solid rgba(255, 255, 255, .12);
	box-shadow: 0 -6px 24px rgba(5, 19, 46, .28);
}
.arl-mobilebar__item {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 14px 8px;
	font-family: var(--font-head);
	font-size: .93rem;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
}
.arl-mobilebar__item .arl-icon { width: 18px; height: 18px; }
.arl-mobilebar__item--primary { background: var(--yellow); color: var(--navy-900); }

/* Back to top */
.arl-totop {
	position: fixed;
	right: 22px; bottom: 26px;
	z-index: 70;
	display: grid;
	place-items: center;
	width: 46px; height: 46px;
	padding: 0;
	background: var(--navy-800);
	color: #fff;
	border: 0;
	border-radius: 50%;
	box-shadow: var(--shadow);
	cursor: pointer;
	transition: background-color .2s ease, transform .25s var(--ease);
}
.arl-totop[hidden] { display: none; }
.arl-totop:hover { background: var(--yellow); color: var(--navy-900); transform: translateY(-3px); }
.arl-totop svg { width: 20px; height: 20px; }

/* ------------------------------------------------------------------ 11. Blog / misc */

.arl-post {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.arl-post:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.arl-post__media { aspect-ratio: 16 / 10; background: var(--surface-tint); overflow: hidden; }
.arl-post__media img { width: 100%; height: 100%; object-fit: cover; }
.arl-post__body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.arl-post__meta { font-size: .82rem; color: var(--muted); margin-bottom: 10px; }
.arl-post__title { font-size: 1.16rem; margin-bottom: .5em; }
.arl-post__title a { color: inherit; text-decoration: none; }
.arl-post__title a:hover { color: var(--navy-600); }
.arl-post__body .arl-svc__more { margin-top: auto; padding-top: 16px; }

.arl-pagination { margin-top: 48px; }
.arl-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.arl-pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 44px; height: 44px;
	padding: 0 12px;
	border: 1px solid var(--line);
	border-radius: 12px;
	font-weight: 600;
	color: var(--navy-800);
	text-decoration: none;
}
.arl-pagination .page-numbers:hover { border-color: var(--navy-800); }
.arl-pagination .page-numbers.current { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }

.arl-empty { text-align: center; padding: 40px 0; }

/* WordPress core alignment + block basics */
.alignleft { float: left; margin: .4em 1.6em 1.2em 0; }
.alignright { float: right; margin: .4em 0 1.2em 1.6em; }
.aligncenter { display: block; margin-inline: auto; }
.alignwide { max-width: min(1100px, 100%); margin-inline: auto; }
.alignfull { max-width: none; }
.wp-caption { max-width: 100%; }
.wp-caption-text, figcaption { font-size: .85rem; color: var(--muted); text-align: center; margin-top: .7em; }
.sticky, .gallery-caption, .bypostauthor { display: block; }

table { width: 100%; border-collapse: collapse; margin-bottom: 1.5em; font-size: .95rem; }
th, td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; }
th { font-family: var(--font-head); color: var(--ink); font-weight: 700; background: var(--surface-soft); }

code, pre {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: .9em;
	background: var(--surface-tint);
	border-radius: 6px;
}
code { padding: .15em .4em; }
pre { padding: 18px; overflow-x: auto; border-radius: var(--radius-sm); }

/* ------------------------------------------------------------------ 12. Motion */

[data-reveal] {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .7s var(--ease), transform .7s var(--ease);
	will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .09s; }
[data-reveal-delay="2"] { transition-delay: .18s; }
[data-reveal-delay="3"] { transition-delay: .27s; }
[data-reveal-delay="4"] { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}
	[data-reveal] { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------------ 13. Responsive */

@media (max-width: 1080px) {
	.arl-menu > li > a { padding: 10px 11px; font-size: .9rem; }
	.arl-nav__inner { gap: 20px; }
	.arl-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
	.arl-footer__contact { grid-column: 1 / -1; }
	.arl-footer__list--contact { grid-template-columns: repeat(2, 1fr); display: grid; gap: 14px 30px; }
}

@media (max-width: 980px) {
	:root { --header-h: 74px; }

	.arl-topbar { display: none; }
	.arl-nav__menu { display: none; }
	.arl-nav__cta { display: none; }
	.arl-burger { display: inline-flex; }
	.arl-header { background: rgba(7, 28, 63, .0); }

	.arl-grid--3, .arl-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.arl-steps { grid-template-columns: repeat(2, 1fr); }
	.arl-statsbar__inner { grid-template-columns: repeat(2, 1fr); }
	.arl-stat:nth-child(2n) { border-right: 0; }
	.arl-stat:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }

	.arl-split { grid-template-columns: 1fr; gap: 34px; }
	.arl-split--reverse .arl-split__media { order: 0; }
	.arl-split__media--stack { padding: 0 24px 24px 0; }
	.arl-split__badge { left: 0; }

	.arl-ctaband__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
	body { font-size: 16px; padding-bottom: 62px; }

	.arl-hero { min-height: auto; padding-top: calc(var(--header-h) + 56px); }
	.arl-hero__actions { gap: 10px; }
	.arl-hero__actions .arl-btn { flex: 1 1 auto; }

	.arl-grid--2, .arl-grid--3, .arl-grid--4 { grid-template-columns: 1fr; }
	.arl-steps { grid-template-columns: 1fr; }
	.arl-checklist--2, .arl-checklist--3 { grid-template-columns: 1fr; }
	.arl-form__grid { grid-template-columns: 1fr; }

	.arl-statsbar { margin-top: -40px; }
	.arl-stat { padding: 24px 16px; }

	.arl-footer__grid { grid-template-columns: 1fr; gap: 36px; }
	.arl-footer__list--contact { grid-template-columns: 1fr; }
	.arl-footer__bar-inner { flex-direction: column; align-items: flex-start; text-align: left; }

	.arl-mobilebar { display: flex; }
	.arl-totop { bottom: 74px; right: 16px; }

	.arl-pagehero { padding-top: calc(var(--header-h) + 56px); }
	.arl-pagehero__actions .arl-btn { flex: 1 1 auto; }
	.arl-split__media--stack .arl-split__second { width: 46%; border-width: 6px; }
}

@media (max-width: 420px) {
	.arl-logo__mark { width: 38px; height: 38px; }
	.arl-logo__name { font-size: 1.24rem; }
	.arl-logo__sub { font-size: .63rem; letter-spacing: .14em; }
	.arl-btn { padding: 14px 20px; font-size: .93rem; }
}

@media print {
	.arl-header, .arl-mobilebar, .arl-totop, .arl-ctaband, .arl-drawer { display: none !important; }
	body { color: #000; }
}
