		/* guarantee no horizontal page scroll on any device — wide visualisations
		   (ownership tree, carousels, marquee) manage their own overflow internally */
		html { overflow-x: clip; }

		/* header */
		.adcorp-home { background: #fff; }

		/* fixed nav: transparent over the full-bleed hero, solid white on scroll */
		.adcorp-home header { position: fixed !important; top: 0 !important; left: 0; width: 100%; z-index: 40; transform: none !important; }
		.adcorp-home header .navbar {
			background: transparent;
			border-bottom: 1px solid transparent;
			padding: 0 !important;
			transition: background-color .3s ease, border-color .3s ease;
		}
		/* no fade when the scrolled state is applied on first paint (refresh-while-scrolled) */
		.adcorp-home header.adcorp-no-anim .navbar,
		.adcorp-home header.adcorp-no-anim .navbar-brand img,
		.adcorp-home header.adcorp-no-anim .nav-link,
		.adcorp-home header.adcorp-no-anim .adcorp-nav-cta { transition: none !important; }
		.adcorp-home header .navbar .nav-link,
		.adcorp-home header .navbar .navbar-nav .nav-link.active { color: #fff !important; }
		.adcorp-home header .navbar .navbar-nav .nav-link:hover { color: rgba(255, 255, 255, 0.68) !important; }
		.adcorp-home header .navbar .adcorp-caret { color: rgba(255, 255, 255, 0.7); }
		.adcorp-home header .navbar-toggler-line { background-color: #fff; }
		/* logo: cream (dark-bg) variant over the hero, colored variant once scrolled */
		.adcorp-home header .adcorp-logo-scrolled { display: none; }
		.adcorp-home header.adcorp-scrolled .adcorp-logo-top { display: none; }
		.adcorp-home header.adcorp-scrolled .adcorp-logo-scrolled { display: inline-block; }

		.adcorp-home header.adcorp-scrolled .navbar {
			background: #fff !important;
			border-bottom-color: rgba(40, 39, 37, 0.06);
			box-shadow: 0 6px 22px rgba(23, 23, 23, 0.07);
		}
		.adcorp-home header.adcorp-scrolled .navbar .nav-link,
		.adcorp-home header.adcorp-scrolled .navbar .navbar-nav .nav-link.active { color: var(--dark-gray) !important; }
		.adcorp-home header.adcorp-scrolled .navbar .navbar-nav .nav-link:hover { color: rgba(40, 39, 37, 0.55) !important; }
		.adcorp-home header.adcorp-scrolled .navbar .adcorp-caret { color: rgba(40, 39, 37, 0.55); }
		.adcorp-home header.adcorp-scrolled .navbar-toggler-line { background-color: var(--black); }
		.adcorp-home header .navbar > .container-fluid { padding-top: 22px !important; padding-bottom: 22px !important; transition: padding .3s ease; }
		.adcorp-home header.adcorp-scrolled .navbar > .container-fluid { padding-top: 12px !important; padding-bottom: 12px !important; }
		.adcorp-home header.adcorp-scrolled .navbar { padding-top: 0 !important; padding-bottom: 0 !important; }
		.adcorp-home header .navbar-brand { padding-top: 0 !important; padding-bottom: 0 !important; }
		.adcorp-home header .navbar .navbar-nav .nav-link { padding-top: 6px !important; padding-bottom: 6px !important; }
		/* desktop nav links: 14px / weight 500, no side padding (spacing via the ul
		   gap), tight tracking. Mobile sheet keeps its own size, so scope to >=992. */
		@media (min-width: 992px) {
			.adcorp-home header .navbar .navbar-nav { gap: 20px; align-items: center; }
			.adcorp-home header .navbar .navbar-nav .nav-link {
				padding: 0.45rem 0 !important;
				font-size: 14px; font-weight: 500; line-height: 1.2; letter-spacing: -0.01em;
			}
			/* the CTA column is a flex item that stretches to the header row height, which
			   dragged the pill tall. Center it so it stays a clean 40px pill. */
			.adcorp-nav-cta-wrap { align-items: center; }
		}
		/* sticky-nav CTA pill: outline over the hero -> filled once scrolled */
		.adcorp-nav-cta {
			display: inline-flex; align-items: center; align-self: center; min-height: 44px; padding: 0 24px;
			border-radius: 999px; font-family: var(--primary-font); font-size: 14px;
			font-weight: 500; line-height: 1; letter-spacing: -0.01em;
			color: #fff; background: transparent; border: 1px solid rgba(255, 255, 255, 0.55);
			transition: background-color .25s ease, color .25s ease, border-color .25s ease;
		}
		.adcorp-nav-cta:hover { background: #fff; color: var(--black); border-color: #fff; }
		/* compact pill once scrolled (hero keeps the bigger pill above) */
		.adcorp-home header.adcorp-scrolled .adcorp-nav-cta { background: var(--dark-gray); border-color: var(--dark-gray); color: #fff; min-height: 40px; padding: 0 20px; font-size: 12px; }
		.adcorp-home header.adcorp-scrolled .adcorp-nav-cta:hover { background: var(--black); border-color: var(--black); color: #fff; }

		/* inner pages share the home behaviour: the header is transparent over their dark
		   navy pagehead (white logo, big pill) and solidifies on scroll via .adcorp-scrolled.
		   (Mobile keeps the solid white bar from the @media block below.) */

		/* Companies dropdown */
		.adcorp-home .navbar-nav .nav-item.dropdown { position: relative; }
		.adcorp-caret {
			font-size: 10px; margin-left: 6px; vertical-align: middle;
			color: rgba(40, 39, 37, 0.55); transition: transform .25s ease;
		}
		.adcorp-home .navbar-nav .nav-item.dropdown:hover .adcorp-caret,
		.adcorp-home .navbar-nav .nav-item.dropdown:focus-within .adcorp-caret { transform: rotate(180deg); }
		.adcorp-dropdown-menu {
			position: absolute; top: 100%; left: 0; min-width: 236px;
			margin: 0; padding: 14px 0; list-style: none;
			background: #fff; border: 1px solid rgba(40, 39, 37, 0.08);
			border-radius: 14px; box-shadow: 0 18px 42px rgba(23, 23, 23, 0.1);
			opacity: 0; visibility: hidden; transform: translateY(8px);
			transition: opacity .2s ease, transform .2s ease, visibility .2s;
			z-index: 40;
		}
		.adcorp-home .navbar-nav .nav-item.dropdown:hover .adcorp-dropdown-menu,
		.adcorp-home .navbar-nav .nav-item.dropdown:focus-within .adcorp-dropdown-menu {
			opacity: 1; visibility: visible; transform: translateY(0);
		}
		.adcorp-dropdown-menu li a {
			display: flex; align-items: center; justify-content: space-between; gap: 16px;
			padding: 8px 26px; font-family: var(--primary-font);
			font-size: 15px; font-weight: 500; letter-spacing: -0.01em;
			color: var(--dark-gray);
			transition: color .2s ease, background-color .2s ease;
		}
		.adcorp-dropdown-menu li a:hover { color: var(--black); background: rgba(249, 246, 243, 0.92); }
		.adcorp-sub-caret { font-size: 11px; margin-left: 8px; color: rgba(40, 39, 37, 0.4); }
		.adcorp-dropdown-menu li a:hover .adcorp-sub-caret { color: var(--black); }
		.adcorp-dropdown-divider { height: 1px; margin: 8px 26px; background: rgba(40, 39, 37, 0.1); }

		.adcorp-home #home { height: 0; min-height: 0; }

		.adcorp-eyebrow {
			display: inline-block; margin-bottom: 22px;
			font-size: 13px; font-weight: 600; letter-spacing: 0.18em;
			text-transform: uppercase; color: rgba(40, 39, 37, 0.56);
		}
		.adcorp-section-eyebrow {
			display: inline-block; margin-bottom: 18px;
			font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
			text-transform: uppercase; color: rgba(40, 39, 37, 0.68);
		}

		/* ===== full-bleed hero ===== */
		.adcorp-hero {
			position: relative; min-height: calc(100vh - 156px); min-height: calc(100svh - 156px);
			display: flex; flex-direction: column; align-items: center; justify-content: center;
			text-align: center; overflow: hidden;
		}
		.adcorp-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
		.adcorp-hero-scrim {
			position: absolute; inset: 0;
			background: linear-gradient(180deg, rgba(20,13,60,0.74) 0%, rgba(20,13,60,0.52) 45%, rgba(20,13,60,0.68) 100%);
		}
		/* calm, deeper base along the hero's lower edge so the overlapping stat cards always
		   sit on a quiet backdrop, whatever the photo shows behind them. */
		.adcorp-hero::after {
			content: ''; position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
			height: clamp(180px, 24vh, 320px); pointer-events: none;
			background: linear-gradient(to top, rgba(20, 13, 60, 0.55), rgba(20, 13, 60, 0));
		}
		.adcorp-hero-inner { position: relative; z-index: 2; width: 100%; max-width: 880px; min-width: 0; margin: 0 auto; box-sizing: border-box; padding: 128px 20px 48px; }
		.adcorp-hero-eyebrow {
			display: inline-block; margin-bottom: 22px; font-size: 13px; font-weight: 600;
			letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.78);
		}
		.adcorp-hero-title {
			margin-bottom: 22px; font-family: var(--primary-font);
			font-size: clamp(2.8rem, 5vw, 5.2rem); font-weight: 600;
			line-height: 1.0; letter-spacing: -0.05em; color: #fff;
		}
		.adcorp-hero-sub {
			max-width: 640px; margin: 0 auto 36px; font-size: 1.16rem;
			line-height: 1.7; color: rgba(255,255,255,0.88); text-align: center;
		}
		.adcorp-hero-actions { display: flex; gap: 18px; justify-content: center; align-items: center; flex-wrap: wrap; }
		.adcorp-btn-light {
			display: inline-flex; align-items: center; gap: 10px; padding: 15px 32px;
			border-radius: 40px; background: #fff; color: var(--black);
			font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
			transition: transform .25s ease, background-color .25s ease;
		}
		.adcorp-btn-light:hover { background: var(--very-light-gray); transform: translateY(-1px); color: var(--black); }
		.adcorp-hero-ghost {
			display: inline-flex; align-items: center; gap: 8px; color: #fff;
			font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
		}
		.adcorp-hero-ghost i { transition: transform .25s ease; }
		.adcorp-hero-ghost:hover { color: #fff; }
		.adcorp-hero-ghost:hover i { transform: translateX(4px); }

		.adcorp-btn-primary {
			display: inline-flex; align-items: center; gap: 10px;
			padding: 14px 30px; border-radius: 40px;
			background: var(--dark-gray); color: #fff;
			font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
			transition: background-color .25s ease, transform .25s ease;
		}
		.adcorp-btn-primary:hover { background: var(--black); color: #fff; transform: translateY(-1px); }
		.adcorp-btn-ghost {
			display: inline-flex; align-items: center; gap: 8px;
			margin-left: 22px; font-size: 15px; font-weight: 600;
			color: var(--black); letter-spacing: -0.01em;
			transition: color .25s ease;
		}
		.adcorp-btn-ghost:hover { color: rgba(40, 39, 37, 0.55); }
		.adcorp-btn-ghost i { transition: transform .25s ease; }
		.adcorp-btn-ghost:hover i { transform: translateX(4px); }

		/* ===== client marquee ===== */
		.adcorp-marquee-section { padding: 56px 0; background: #fff; }
		.adcorp-marquee-eyebrow {
			text-align: center; margin-bottom: 22px; font-size: 12px; font-weight: 600;
			letter-spacing: 0.16em; text-transform: uppercase; color: rgba(40, 39, 37, 0.5);
		}
		.adcorp-marquee {
			position: relative; overflow: hidden; width: 100%;
			-webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
			mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
		}
		.adcorp-marquee-track {
			display: flex; align-items: center; gap: 68px; width: max-content;
			animation: adcorp-scroll 44s linear infinite;
		}
		.adcorp-marquee:hover .adcorp-marquee-track { animation-play-state: paused; }
		.adcorp-marquee-track img {
			height: 34px; width: auto; object-fit: contain; flex: none;
			filter: grayscale(1); opacity: 0.55;
			transition: filter .25s ease, opacity .25s ease;
		}
		.adcorp-marquee-track img:hover { filter: none; opacity: 1; }
		@keyframes adcorp-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
		@media (prefers-reduced-motion: reduce) {
			.adcorp-marquee-track { animation: none; flex-wrap: wrap; justify-content: center; row-gap: 28px; }
			.adcorp-marquee { -webkit-mask-image: none; mask-image: none; }
		}

		/* ===== who we are ===== */
		/* stats band — proof cards float up over the hero's lower edge, bridging the dark
		   hero into the white content (fills the slot the old client marquee used to hold). */
		/* the band carries the warm section colour up to the hero's edge so the cards straddle
		   photo -> cream (no white sliver). flow-root anchors that fill at the hero edge while
		   only the cards' row is pulled up to overlap the hero. */
		.adcorp-stats-band { position: relative; z-index: 3; display: flow-root; padding: 0; background: #fbfaf8; }
		.adcorp-stats-band .adcorp-stats-grid { margin-top: -118px; }
		/* solid white — these float over the dark hero, where the section's translucent
		   card fill would let the photo bleed through and look grey at the top. */
		.adcorp-stats-band .adcorp-proof-card { background: #ffffff; box-shadow: 0 18px 48px rgba(20, 13, 60, 0.18); }
		@media (max-width: 991px) { .adcorp-stats-band .adcorp-stats-grid { margin-top: -100px; } }
		@media (max-width: 767px) { .adcorp-stats-band .adcorp-stats-grid { margin-top: -80px; } }
		/* short viewports: the hero photo is already compressed, so ease the overlap
		   (listed last so it wins over the width rules when the screen is also narrow). */
		@media (max-height: 860px) { .adcorp-stats-band .adcorp-stats-grid { margin-top: -60px; } }
		.adcorp-who { padding: 72px 0 92px; background: #fff; }
		.adcorp-who-head { margin-bottom: 46px; }
		.adcorp-who-title {
			margin: 0; font-family: var(--primary-font);
			font-size: clamp(2rem, 3vw, 3.2rem); font-weight: 600;
			line-height: 1.04; letter-spacing: -0.05em; color: var(--black);
		}
		.adcorp-who-copy { max-width: 440px; margin: 0 0 0 auto; color: rgba(56, 54, 50, 0.78); line-height: 1.7; font-size: 16px; }
		/* proof stat cards */
		.adcorp-proof-grid { margin-top: 82px; }
		.adcorp-proof-card {
			height: 100%; padding: 30px 28px 28px; border-radius: 18px;
			background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(248,247,245,0.94) 100%);
			border: 1px solid rgba(23, 23, 23, 0.08);
		}
		.adcorp-proof-label {
			display: inline-block; margin-bottom: 16px; font-size: 12px;
			font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
			color: rgba(40, 39, 37, 0.48);
		}
		.adcorp-proof-value {
			display: block; margin-bottom: 12px; font-family: var(--primary-font);
			font-size: clamp(2.4rem, 3vw, 3.1rem); font-weight: 600;
			line-height: 1; letter-spacing: -0.05em; color: var(--black);
		}
		.adcorp-proof-copy { margin-bottom: 0; font-size: 15px; line-height: 1.68; color: rgba(56, 54, 50, 0.78); }

		/* business section (off-white band) */
		.adcorp-biz-section {
			background: linear-gradient(180deg, #fbfaf8 0%, #f5f1ec 100%);
			padding-top: 116px; padding-bottom: 96px;
		}
		.adcorp-biz-head { margin-bottom: 46px; }
		.adcorp-biz-title {
			margin-bottom: 0; font-family: var(--primary-font);
			font-size: clamp(2.1rem, 3vw, 3.3rem); font-weight: 600;
			line-height: 1.02; letter-spacing: -0.05em; color: var(--black);
		}
		.adcorp-biz-copy { max-width: 430px; margin: 30px 0 0 auto; color: rgba(56, 54, 50, 0.76); line-height: 1.7; }

		.adcorp-biz-card {
			height: 100%; display: flex; flex-direction: column; padding: 28px 26px 26px; border-radius: 18px;
			background: rgba(255, 255, 255, 0.78);
			border: 1px solid rgba(23, 23, 23, 0.08);
			box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
			transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
		}
		.adcorp-biz-card:hover {
			transform: translateY(-2px); border-color: rgba(23, 23, 23, 0.14);
			box-shadow: 0 18px 40px rgba(23, 23, 23, 0.07);
		}
		.adcorp-biz-card-label {
			display: inline-block; margin-bottom: 14px; font-size: 11px;
			font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
			color: rgba(40, 39, 37, 0.5);
		}
		.adcorp-biz-card-name {
			display: block; margin-bottom: 10px; font-family: var(--primary-font);
			font-size: 1.4rem; font-weight: 600; letter-spacing: -0.03em; color: var(--black);
		}
		.adcorp-biz-card-note { margin: 0; font-size: 14.5px; line-height: 1.62; color: rgba(56, 54, 50, 0.76); }
		.adcorp-biz-card-link {
			display: inline-flex; align-items: center; align-self: flex-start; gap: 6px;
			margin-top: auto; padding-top: 18px;
			font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
			text-transform: uppercase; color: var(--dark-gray);
		}
		.adcorp-biz-card-link i { transition: transform .25s ease; }
		.adcorp-biz-card-link:hover i { transform: translateX(3px); }

		/* impact / CSR */
		.adcorp-impact-copy { max-width: 400px; padding-right: 22px; }
		.adcorp-impact-copy h2 {
			margin-bottom: 0; font-family: var(--primary-font);
			font-size: clamp(2rem, 2.7vw, 3rem); font-weight: 600;
			line-height: 1; letter-spacing: -0.045em; color: var(--black);
		}
		.adcorp-impact-copy p { max-width: 370px; margin: 18px 0 0; font-size: 16px; line-height: 1.72; color: rgba(56, 54, 50, 0.78); }
		.adcorp-impact-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--black); }
		.adcorp-impact-link i { transition: transform .25s ease; }
		.adcorp-impact-link:hover i { transform: translateX(4px); }
		.adcorp-impact-card {
			height: 100%; padding: 30px 28px; border-radius: 20px;
			background: rgba(249, 246, 243, 0.72); border: 1px solid rgba(23, 23, 23, 0.06);
			transition: transform .25s ease, box-shadow .25s ease;
		}
		.adcorp-impact-card:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(23, 23, 23, 0.06); }
		.adcorp-impact-tag { display:inline-block; margin-bottom: 14px; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(40,39,37,0.5); }
		.adcorp-impact-card h3 { margin-bottom: 10px; font-family: var(--primary-font); font-size: 1.35rem; font-weight: 600; letter-spacing: -0.03em; color: var(--black); }
		.adcorp-impact-card p { margin: 0; font-size: 14.5px; line-height: 1.62; color: rgba(56, 54, 50, 0.76); }

		/* CTA band */
		.adcorp-cta {
			background: linear-gradient(180deg, #fbfaf8 0%, #f5f1ec 100%);
			border: 1px solid rgba(23, 23, 23, 0.06);
			border-radius: 28px; padding: 62px 56px; text-align: center;
		}
		.adcorp-cta h2 {
			margin-bottom: 14px; font-family: var(--primary-font);
			font-size: clamp(2rem, 2.8vw, 3rem); font-weight: 600;
			letter-spacing: -0.045em; color: var(--black);
		}
		.adcorp-cta p { max-width: 520px; margin: 0 auto 30px; font-size: 16px; line-height: 1.7; color: rgba(56, 54, 50, 0.76); text-align: center; }
		.adcorp-cta .adcorp-btn-primary:hover { background: var(--black); color: #fff; }

		/* logo sizing — enlarged per client feedback (height only, proportions preserved) */
		.adfs-footer-brand .default-logo { height: 44px !important; max-height: none !important; width: auto; }
		.adcorp-home header .navbar-brand img.adcorp-nav-logo { height: 58px !important; max-height: none !important; width: auto; }
		/* smaller logo once scrolled */
		.adcorp-home header.adcorp-scrolled .navbar-brand img.adcorp-nav-logo { height: 38px !important; max-height: none !important; }
		/* footer heading spacing */
		.adcorp-home .adfs-footer-primary .col-lg-5 .adfs-footer-heading { margin-top: 30px; }
		/* footer micro-label headings: align tracking + colour to the section eyebrow */
		.adcorp-home .adfs-footer-heading { letter-spacing: 0.08em; color: rgba(40, 39, 37, 0.68); }
		/* footer: left-align on phones. The theme's <=991px block centres it with both
		   text-align:center !important AND flex align-items:center — override both. */
		@media (max-width: 767.98px) {
			.adfs-site-footer .text-center,
			.adfs-site-footer .adfs-footer-grid,
			.adfs-site-footer .adfs-footer-grid > div,
			.adfs-site-footer .adfs-footer-link-list,
			.adfs-site-footer .adfs-footer-link-list a,
			.adfs-site-footer .adfs-footer-contact-list,
			.adfs-site-footer .adfs-footer-contact-list a,
			.adfs-site-footer .adfs-footer-col-right,
			.adfs-site-footer .adfs-footer-brand,
			.adfs-site-footer .adfs-footer-summary,
			.adfs-site-footer .adfs-footer-address,
			.adfs-site-footer .adfs-footer-meta,
			.adfs-site-footer .elements-social { text-align: left !important; }
			.adfs-site-footer .adfs-footer-grid,
			.adfs-site-footer .adfs-footer-summary,
			.adfs-site-footer .adfs-footer-address { margin-left: 0 !important; margin-right: 0 !important; }
			.adfs-site-footer .adfs-footer-link-list,
			.adfs-site-footer .adfs-footer-contact-list { align-items: flex-start !important; }
			.adfs-site-footer .adfs-footer-bottom { align-items: flex-start !important; }
			.adfs-site-footer .adfs-footer-brand { justify-content: flex-start; }
			.adfs-site-footer .elements-social ul { justify-content: flex-start; }
		}

		@media (max-width: 991px) {
			.adcorp-hero { min-height: calc(100vh - 132px); min-height: calc(100svh - 132px); }
			.adcorp-hero-inner { padding-top: 104px; }
			/* editorial split intros centre when stacked. The copy paragraphs need an
			   explicit text-align because the theme's base `p { text-align:left }`
			   reset beats the centre they'd otherwise inherit from the heading. */
			.adcorp-biz-head { text-align: center; }
			.adcorp-biz-copy { max-width: none; margin: 16px auto 0; text-align: center; }
			.adcorp-who-head { text-align: center; }
			.adcorp-who-copy { max-width: none; margin: 16px auto 0; text-align: center; }
			/* leadership's governance intro uses a bare row (no *-head class) — centre its heading side too */
			.col-lg-5:has(> .adcorp-who-title) { text-align: center; }
			.adcorp-impact-copy { max-width: none; padding-right: 0; text-align: center; margin-bottom: 30px; }
			.adcorp-impact-copy p { max-width: none; margin-left: auto; margin-right: auto; text-align: center; }
			.adcorp-proof-grid { margin-top: 44px; }
			.adcorp-caret { display: none; }

			/* mobile header: solid white + colored logo always. The Litho theme hides
			   .default-logo below 992px, and both ADCORP logos carry that class, so
			   nothing showed — force the colored logo and a solid bar. */
			.adcorp-home header .navbar,
			.adcorp-home header.adcorp-scrolled .navbar {
				background: #fff !important; backdrop-filter: none !important;
				border-bottom: 1px solid rgba(40, 39, 37, 0.08);
				box-shadow: 0 6px 22px rgba(23, 23, 23, 0.06);
			}
			.adcorp-home header .navbar > .container-fluid,
			.adcorp-home header.adcorp-scrolled .navbar > .container-fluid { padding-top: 12px !important; padding-bottom: 12px !important; }
			/* the theme's responsive.min.css hides .default-logo on mobile via
			   visibility/opacity/width:0 !important — beat all three for the colored logo. */
			.adcorp-home header .adcorp-logo-top { display: none !important; }
			.adcorp-home header .adcorp-logo-scrolled {
				display: inline-block !important;
				visibility: visible !important; opacity: 1 !important; width: auto !important;
			}
			.adcorp-home header .navbar-brand img.adcorp-nav-logo,
			.adcorp-home header.adcorp-scrolled .navbar-brand img.adcorp-nav-logo { height: 40px !important; }
			.adcorp-home header .navbar .nav-link,
			.adcorp-home header .navbar .navbar-nav .nav-link.active { color: var(--black) !important; }
			.adcorp-home header .navbar-toggler-line { background-color: var(--black) !important; }
			/* keep brand + toggler above the sheet so the X can close it */
			.adcorp-home header .navbar-brand,
			.adcorp-home header .navbar-toggler { position: relative; z-index: 10000003; }
			/* hamburger -> X while open (theme keys this on a Litho JS class ADCORP's
			   native Bootstrap collapse never sets; re-key it on our .menu-open). */
			.adcorp-home header.menu-open .navbar-toggler-line:nth-child(1),
			.adcorp-home header.menu-open .navbar-toggler-line:nth-child(4) { top: 7px; width: 0%; }
			.adcorp-home header.menu-open .navbar-toggler-line:nth-child(2) { transform: rotate(45deg); }
			.adcorp-home header.menu-open .navbar-toggler-line:nth-child(3) { transform: rotate(-45deg); }

			/* full-screen menu sheet: drop the header transform while open so the fixed
			   overlay fills the viewport instead of pinning to the navbar. */
			.adcorp-home header.menu-open .navbar { transform: none !important; z-index: 10000002 !important; }
			.adcorp-home header .navbar .navbar-collapse.show,
			.adcorp-home header .navbar .navbar-collapse.collapsing {
				/* inset:0 (not an explicit height) sizes the sheet to the full viewport —
				   a set height would override the bottom edge and leave a gap. */
				position: fixed !important; inset: 0 !important; height: auto !important; max-height: none !important;
				margin: 0 !important; padding: 96px 32px calc(40px + env(safe-area-inset-bottom)) !important;
				display: flex !important; flex-direction: column; justify-content: center;
				background: #fff !important; border: 0; border-radius: 0; box-shadow: none !important;
				overflow: hidden auto !important; opacity: 1 !important; z-index: 10000001 !important;
			}
			.adcorp-home header .navbar-collapse.show .navbar-nav,
			.adcorp-home header .navbar-collapse.collapsing .navbar-nav {
				flex-direction: column; align-items: stretch; gap: 6px;
				width: 100%; max-width: 460px; margin: 0 auto; padding: 0;
			}
			.adcorp-home header .navbar-collapse .nav-item { width: 100%; }
			.adcorp-home header .navbar-collapse .nav-link {
				display: block; width: 100%; padding: 10px 0 !important;
				font-family: var(--primary-font); font-size: 1.5rem; font-weight: 500;
				letter-spacing: -0.01em; line-height: 1.3; color: var(--black) !important; text-align: left;
			}
			.adcorp-home header .navbar-collapse .nav-link.active { color: rgba(40, 39, 37, 0.45) !important; }
			/* mobile sheet shows only top-level links — hide the Companies submenu */
			.adcorp-home header .navbar-collapse .adcorp-dropdown-menu { display: none !important; }
			/* mobile CTA — full-width dark pill under the nav */
			.adcorp-mobile-cta { width: 100%; max-width: 460px; margin: 36px auto 0; }
			.adcorp-mobile-cta .adcorp-nav-cta {
				display: flex; align-items: center; justify-content: center;
				width: 100%; height: 54px; border-radius: 999px;
				background: var(--dark-gray); border-color: var(--dark-gray); color: #fff; font-size: 15px;
			}
			.adcorp-mobile-cta .adcorp-nav-cta:hover { background: var(--black); border-color: var(--black); color: #fff; }
		}
		@media (max-width: 767px) {
			.adcorp-hero-inner { padding: 104px 4px 40px; }
			.adcorp-hero-eyebrow { font-size: 11px; letter-spacing: 0.14em; margin-bottom: 16px; }
			.adcorp-hero-title { font-size: 2.05rem; margin-bottom: 18px; }
			.adcorp-hero-sub { font-size: 1rem; margin-bottom: 28px; }
			.adcorp-hero-actions { flex-direction: column; gap: 14px; }
			.adcorp-btn-light { padding: 14px 28px; }
			.adcorp-cta { padding: 46px 26px; }
		}

		/* motion */
		.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1); }
		.js .reveal.in { opacity: 1; transform: none; }
		.js .reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1); }
		.js .reveal-stagger.in > * { opacity: 1; transform: none; }
		.js .reveal-stagger.in > *:nth-child(2) { transition-delay: .07s; }
		.js .reveal-stagger.in > *:nth-child(3) { transition-delay: .14s; }
		.js .reveal-stagger.in > *:nth-child(4) { transition-delay: .21s; }
		.js .reveal-stagger.in > *:nth-child(5) { transition-delay: .28s; }
		.js .reveal-stagger.in > *:nth-child(6) { transition-delay: .35s; }
		.js .reveal-stagger.in > *:nth-child(7) { transition-delay: .42s; }
		.js .reveal-stagger.in > *:nth-child(8) { transition-delay: .49s; }
		/* hero entrance on load */
		.js .adcorp-hero-inner > * { opacity: 0; animation: adcorp-rise .9s cubic-bezier(.22,.61,.36,1) forwards; }
		.js .adcorp-hero-inner > *:nth-child(1) { animation-delay: .15s; }
		.js .adcorp-hero-inner > *:nth-child(2) { animation-delay: .30s; }
		.js .adcorp-hero-inner > *:nth-child(3) { animation-delay: .45s; }
		.js .adcorp-hero-inner > *:nth-child(4) { animation-delay: .60s; }
		@keyframes adcorp-rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
		/* subtle, slow ken-burns drift on the hero image */
		.adcorp-hero-img { animation: adcorp-kenburns 26s ease-in-out infinite alternate; transform-origin: 50% 55%; will-change: transform; }
		@keyframes adcorp-kenburns { from { transform: scale(1); } to { transform: scale(1.06); } }

		@media (prefers-reduced-motion: reduce) {
			.js .reveal, .js .reveal-stagger > *, .js .adcorp-hero-inner > *,
			.js .adcorp-pagehead-eyebrow, .js .adcorp-pagehead-title, .js .adcorp-pagehead-lead { opacity: 1 !important; transform: none !important; animation: none !important; }
			.adcorp-hero-img { animation: none !important; }
		}

/* ===== inner pages ===== */
.adcorp-pagehead {
	position: relative;
	padding: 184px 20px 98px;
	text-align: center;
	background: #140d3c url('../images/pagehead-bg.svg') center / cover no-repeat;
	overflow: hidden;
}
.adcorp-pagehead::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(14, 8, 44, 0) 58%, rgba(14, 8, 44, 0.55) 100%);
	pointer-events: none;
}
.adcorp-pagehead > .container { position: relative; z-index: 1; }
.js .adcorp-pagehead-eyebrow,
.js .adcorp-pagehead-title,
.js .adcorp-pagehead-lead { opacity: 0; animation: adcorp-rise .9s cubic-bezier(.22, .61, .36, 1) forwards; }
.js .adcorp-pagehead-eyebrow { animation-delay: .08s; }
.js .adcorp-pagehead-title { animation-delay: .2s; }
.js .adcorp-pagehead-lead { animation-delay: .32s; }
.adcorp-pagehead-eyebrow {
	display: inline-block;
	margin-bottom: 18px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}
.adcorp-pagehead-title {
	margin: 0 auto;
	max-width: 900px;
	font-family: var(--primary-font);
	font-size: clamp(2.4rem, 5vw, 4rem);
	font-weight: 600;
	line-height: 1.02;
	letter-spacing: -0.05em;
	color: #fff;
}
.adcorp-pagehead-lead {
	max-width: 640px;
	margin: 20px auto 0;
	font-size: 1.12rem;
	line-height: 1.7;
	text-align: center;
	color: rgba(255, 255, 255, 0.8);
}

.adcorp-section { padding: 88px 0; background: #fff; scroll-margin-top: 88px; }
.adcorp-section--alt { background: linear-gradient(180deg, #fbfaf8 0%, #f5f1ec 100%); }
.adcorp-section-head { margin-bottom: 44px; text-align: center; }
.adcorp-section-title {
	margin: 0 auto;
	max-width: 720px;
	font-family: var(--primary-font);
	font-size: clamp(1.9rem, 2.6vw, 2.7rem);
	font-weight: 600;
	line-height: 1.06;
	letter-spacing: -0.04em;
	color: var(--black);
}
.adcorp-section-lead {
	max-width: 640px;
	margin: 16px auto 0;
	font-size: 16px;
	line-height: 1.7;
	color: rgba(56, 54, 50, 0.78);
}

/* tabs */
.adcorp-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	border: 0;
	margin-bottom: 48px;
}
.adcorp-tabs .nav-link {
	padding: 11px 24px;
	border: 1px solid rgba(40, 39, 37, 0.14);
	border-radius: 999px;
	background: #fff;
	font-family: var(--primary-font);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--dark-gray);
	transition: background-color .25s ease, border-color .25s ease, color .25s ease;
}
.adcorp-tabs .nav-link:hover { border-color: rgba(40, 39, 37, 0.32); }
.adcorp-tabs .nav-link.active { background: var(--dark-gray); border-color: var(--dark-gray); color: #fff; }

/* person card */
.adcorp-person { text-align: center; }
.adcorp-person-photo {
	width: 100%;
	aspect-ratio: 4 / 5;
	border-radius: 18px;
	overflow: hidden;
	margin-bottom: 18px;
	background: linear-gradient(180deg, #eef0f5 0%, #e0e3ec 100%);
	border: 1px solid rgba(23, 23, 23, 0.06);
	box-shadow: 0 14px 34px rgba(23, 23, 23, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform .3s ease, box-shadow .3s ease;
}
.adcorp-person:hover .adcorp-person-photo { transform: translateY(-3px); box-shadow: 0 22px 46px rgba(23, 23, 23, 0.11); }
.adcorp-person-photo img { width: 100%; height: 100%; object-fit: cover; }
.adcorp-person-initials {
	font-family: var(--primary-font);
	font-size: 2.4rem;
	font-weight: 600;
	letter-spacing: -0.03em;
	color: #140d3c;
	opacity: 0.5;
}
.adcorp-person-name {
	margin: 0 0 4px;
	font-family: var(--primary-font);
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.25;
	text-align: center;
	color: var(--black);
}
.adcorp-person-role { margin: 0; font-size: 14px; line-height: 1.5; text-align: center; color: rgba(56, 54, 50, 0.7); }
.adcorp-person-icon { font-size: 2rem; color: rgba(20, 13, 60, 0.38); }

/* org chart */
.adcorp-org { max-width: 940px; margin: 0 auto; text-align: center; }
.adcorp-org-node {
	display: inline-block;
	min-width: 210px;
	padding: 18px 24px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid rgba(23, 23, 23, 0.1);
	box-shadow: 0 6px 20px rgba(23, 23, 23, 0.05);
}
.adcorp-org-node--root { background: var(--dark-gray); border-color: var(--dark-gray); }
.adcorp-org-node--root .adcorp-org-title { color: #fff; }
.adcorp-org-node--root .adcorp-org-sub { color: rgba(255, 255, 255, 0.65); }
.adcorp-org-title { display: block; font-family: var(--primary-font); font-weight: 600; font-size: 1.05rem; letter-spacing: -0.02em; color: var(--black); }
.adcorp-org-sub { display: block; margin-top: 6px; font-size: 11px; line-height: 1.5; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(40, 39, 37, 0.5); }
.adcorp-org-branch { width: 1px; height: 24px; margin: 0 auto; background: rgba(23, 23, 23, 0.18); }
.adcorp-org-row {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 820px;
	margin: 0 auto;
	padding-top: 24px;
	align-items: stretch;
}
.adcorp-org-row .adcorp-org-node { position: relative; min-width: 0; }
/* vertical drop from the rail down to each node */
.adcorp-org-row .adcorp-org-node::before {
	content: "";
	position: absolute;
	top: -24px;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 24px;
	background: rgba(23, 23, 23, 0.18);
}
/* horizontal rail — each node draws a segment ending at its own centre and
   overlapping into the grid gap, so the rail runs exactly first-centre → last-centre
   with no overshoot past the outer nodes */
.adcorp-org-row .adcorp-org-node::after {
	content: "";
	position: absolute;
	top: -24px;
	left: -11px;
	right: -11px;
	height: 1px;
	background: rgba(23, 23, 23, 0.18);
}
.adcorp-org-row .adcorp-org-node:first-child::after { left: 50%; right: -11px; }
.adcorp-org-row .adcorp-org-node:last-child::after { left: -11px; right: 50%; }
@media (max-width: 767px) {
	.adcorp-org-row { grid-template-columns: 1fr; padding-top: 0; gap: 14px; }
	.adcorp-org-row .adcorp-org-node::before, .adcorp-org-row .adcorp-org-node::after, .adcorp-org-branch { display: none; }
}

/* companies category label */
.adcorp-cat-label {
	display: block;
	margin: 0 0 24px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(40, 39, 37, 0.5);
}

/* contact */
.adcorp-contact-item { margin-bottom: 28px; }
.adcorp-contact-label {
	display: block;
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(40, 39, 37, 0.5);
}
.adcorp-contact-item p, .adcorp-contact-item a {
	margin: 0;
	font-size: 16px;
	line-height: 1.7;
	color: rgba(56, 54, 50, 0.82);
	text-decoration: none;
}
.adcorp-contact-item a:hover { color: var(--black); }
.adcorp-map {
	width: 100%;
	aspect-ratio: 16 / 10;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid rgba(23, 23, 23, 0.08);
	background: linear-gradient(180deg, #eef1f4 0%, #e4e8ec 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(40, 39, 37, 0.5);
	font-size: 14px;
	letter-spacing: 0.04em;
}
/* contact form — icon fields in a 2-col grid (name+email, then company + message full width) */
.adcorp-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-bottom: 24px; }
.adcorp-form-group--wide { grid-column: span 2; }
.adcorp-field { position: relative; }
.adcorp-form-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); z-index: 2; font-size: 16px; line-height: 1; color: rgba(40, 39, 37, 0.4); pointer-events: none; }
.adcorp-form-group--textarea .adcorp-form-icon { top: 23px; transform: none; }
.adcorp-form .adcorp-field input, .adcorp-form .adcorp-field textarea {
	width: 100%;
	padding: 15px 16px 15px 50px;
	border-radius: 14px;
	border: 1px solid rgba(40, 39, 37, 0.16);
	background: #fff;
	font-family: var(--primary-font);
	font-size: 15px;
	color: var(--black);
	transition: border-color .2s ease, box-shadow .2s ease;
}
.adcorp-form .adcorp-field textarea { min-height: 150px; padding-top: 15px; resize: vertical; }
.adcorp-form .adcorp-field input::placeholder, .adcorp-form .adcorp-field textarea::placeholder { color: rgba(40, 39, 37, 0.42); }
.adcorp-form .adcorp-field input:focus, .adcorp-form .adcorp-field textarea:focus { outline: none; border-color: var(--dark-gray); box-shadow: 0 0 0 3px rgba(56, 54, 50, 0.1); }
/* character counter for the message field */
.adcorp-char-counter { margin-top: 8px; text-align: right; font-size: 13px; font-variant-numeric: tabular-nums; color: rgba(40, 39, 37, 0.42); transition: color .15s ease; }
.adcorp-char-counter.is-near { color: #c26b2b; }
.adcorp-char-counter.is-max { color: #b03a2e; font-weight: 600; }
/* contact form feedback: success / error alerts + inline field errors */
.adcorp-form-success, .adcorp-form-error { padding: 16px 18px; border-radius: 12px; font-size: 14.5px; line-height: 1.6; margin-bottom: 22px; }
.adcorp-form-success { background: rgba(29, 122, 95, 0.08); border: 1px solid rgba(29, 122, 95, 0.22); color: #1d5f4a; }
.adcorp-form-error { background: rgba(176, 58, 46, 0.06); border: 1px solid rgba(176, 58, 46, 0.22); color: #9c342a; }
.adcorp-form-field-error { display: block; margin-top: 6px; font-size: 13px; line-height: 1.5; color: #b03a2e; }
/* validation states: server-side (.is-invalid) + native (:user-invalid, after interaction) */
.adcorp-form .adcorp-field input.is-invalid, .adcorp-form .adcorp-field textarea.is-invalid,
.adcorp-form .adcorp-field input:user-invalid, .adcorp-form .adcorp-field textarea:user-invalid { border-color: rgba(176, 58, 46, 0.55); }
.adcorp-form .adcorp-field input.is-invalid:focus, .adcorp-form .adcorp-field textarea.is-invalid:focus,
.adcorp-form .adcorp-field input:user-invalid:focus, .adcorp-form .adcorp-field textarea:user-invalid:focus { box-shadow: 0 0 0 3px rgba(176, 58, 46, 0.12); }
@media (max-width: 575.98px) { .adcorp-form-grid { grid-template-columns: 1fr; } .adcorp-form-group--wide { grid-column: span 1; } }

/* visible keyboard focus for custom controls */
.adcorp-btn-primary:focus-visible,
.adcorp-btn-light:focus-visible,
.adcorp-nav-cta:focus-visible,
.adcorp-hero-ghost:focus-visible,
.adcorp-tabs .nav-link:focus-visible,
.adcorp-holding-link:focus-visible,
.adcorp-biz-card-link:focus-visible {
	outline: 2px solid var(--dark-gray);
	outline-offset: 3px;
}
.adcorp-pagehead .adcorp-nav-cta:focus-visible { outline-color: #fff; }

@media (max-width: 991px) {
	.adcorp-pagehead { padding: 148px 20px 72px; }
	.adcorp-section { padding: 64px 0; }
}

/* companies: sub-holding sections */
.adcorp-holding-head { max-width: 760px; margin-bottom: 40px; }
.adcorp-holding-legal {
	margin: 0;
	font-family: var(--primary-font);
	font-size: clamp(1.7rem, 2.4vw, 2.4rem);
	font-weight: 600;
	letter-spacing: -0.04em;
	color: var(--black);
}
.adcorp-holding-desc { margin: 16px 0 0; font-size: 16px; line-height: 1.72; color: rgba(56, 54, 50, 0.78); }
.adcorp-holding-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 18px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--dark-gray);
}
.adcorp-holding-link i { transition: transform .25s ease; }
.adcorp-holding-link:hover i { transform: translateX(3px); }
/* Group structure module — a centred exhibit under the left-aligned section intro:
   hairline divider + centred label so the label shares the tree's central axis. */
.adcorp-group {
	margin-top: clamp(40px, 5vw, 64px);
	padding-top: clamp(32px, 4vw, 44px);
	border-top: 1px solid rgba(20, 13, 60, 0.10);
}
.adcorp-group .adcorp-section-eyebrow { display: block; margin-bottom: 24px; }
/* desktop: the tree is centred, so centre the label to share its axis.
   mobile: the tree reflows to a left-aligned outline, so the label stays left. */
@media (min-width: 681px) {
	.adcorp-group { text-align: left; }
}

/* ---- group structure (companies page) — line-free. Each DIRECT SUBSIDIARY is its own
   container (a distinct group); any company that owns others is a nested container; leaf
   companies are boxes. Depth-specific tier labels introduce each group, and container strength +
   tone + indentation + name size all step down by depth so the ownership hierarchy is legible. ---- */
.adcorp-nc, .adcorp-nc * { box-sizing: border-box; }
/* one outer frame only — the site's warm hairline + card radius, so the exhibit reads as a
   page card, not a widget. Depth below is carried by tint + indent + type, not more borders. */
.adcorp-nc--root {
	display: flex; align-items: stretch; text-align: left;
	border: 1px solid rgba(23, 23, 23, 0.08); border-radius: 18px; overflow: hidden;
	background: #f7f6f2;
}
.adcorp-nc-rootlabel {
	flex: 0 0 210px; background: #140d3c; color: #fff;
	display: flex; flex-direction: column; justify-content: center; align-items: center;
	text-align: center; padding: 28px 24px; gap: 6px;
}
.adcorp-nc-rootlabel strong { font-family: var(--primary-font); font-size: 1.18rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; white-space: nowrap; }
.adcorp-nc-rootlabel span { font-size: 0.74rem; font-weight: 500; color: rgba(255, 255, 255, 0.62); opacity: 1; line-height: 1.35; }
.adcorp-nc-rootlabel .adcorp-nc-root-eyebrow { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); margin-bottom: 2px; }
.adcorp-nc-body { flex: 1; display: flex; flex-direction: column; gap: 12px; padding: 24px; }
/* generous rhythm BETWEEN direct-subsidiary groups; the tier label stays attached (12px) above them */
.adcorp-nc-body > .adcorp-nc-card + .adcorp-nc-card { margin-top: 8px; }

/* tier labels — the site eyebrow, one notch smaller; always subordinate to the company names */
.adcorp-nc-tier-label { display: block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(40, 39, 37, 0.5); }

/* LEVEL 1 (direct subsidiary) — the one strong frame: white card, hairline, soft lift.
   Deeper levels are BORDERLESS tints that darken by depth, so nesting reads without more boxes. */
.adcorp-nc-card { display: flex; flex-direction: column; border-radius: 16px; }
.adcorp-nc-card--d1 { background: #ffffff; border: 1px solid rgba(23, 23, 23, 0.08); box-shadow: 0 1px 2px rgba(20, 13, 60, 0.04), 0 4px 16px rgba(20, 13, 60, 0.04); }
.adcorp-nc-card--d2 { background: #f3f4f8; border-radius: 12px; }
.adcorp-nc-card--d3, .adcorp-nc-card--d4 { background: #eceef4; border-radius: 10px; }
/* the company name is the focus — size/weight step down by tier */
.adcorp-nc-card-head { text-align: center; font-family: var(--primary-font); color: #140d3c; line-height: 1.3; padding: 16px 20px; }
.adcorp-nc-card--d1 > .adcorp-nc-card-head { font-size: 1.02rem; font-weight: 700; letter-spacing: -0.01em; }
.adcorp-nc-card--d2 > .adcorp-nc-card-head { font-size: 0.9rem; font-weight: 600; }
.adcorp-nc-card--d3 > .adcorp-nc-card-head, .adcorp-nc-card--d4 > .adcorp-nc-card-head { font-size: 0.85rem; font-weight: 600; }
/* when a card owns a group, pull the tier label up so it attaches to the group below the name */
.adcorp-nc-card:has(> .adcorp-nc-card-body) > .adcorp-nc-card-head { padding-bottom: 10px; }
/* the companies a card owns — inset (stair-steps deeper each level) + labelled group, tight to its items */
.adcorp-nc-card-body { padding: 0 16px 16px; margin-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.adcorp-nc-tier-items { display: flex; flex-wrap: wrap; gap: 8px; }
.adcorp-nc-tier-items > * { flex: 1 1 200px; }                 /* leaf boxes share a row */
.adcorp-nc-tier-items > .adcorp-nc-card { flex-basis: 100%; }  /* a nested owning-company card takes a full row */

/* a leaf company = a borderless tone box; it shares its level's tint so it reads as a sibling
   of the owning cards at the same depth (e.g. Tuanku Suma Utama beside Tuanku Bumi Melayu) */
.adcorp-nc-leaf {
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	text-align: center; gap: 2px; padding: 16px 20px;
	border-radius: 12px; font-family: var(--primary-font); color: #140d3c; line-height: 1.3;
}
.adcorp-nc-leaf--d2 { background: #f3f4f8; }
.adcorp-nc-leaf--d3, .adcorp-nc-leaf--d4 { background: #eceef4; border-radius: 10px; padding: 13px 16px; }
.adcorp-nc-leaf-name { font-weight: 600; font-size: 0.9rem; }
.adcorp-nc-leaf--d3 .adcorp-nc-leaf-name, .adcorp-nc-leaf--d4 .adcorp-nc-leaf-name { font-size: 0.85rem; }
.adcorp-nc-leaf-sub { font-size: 0.72rem; font-weight: 500; color: rgba(56, 54, 50, 0.6); }

/* tablet — tighten padding, keep the side chip + horizontal sibling rows */
@media (max-width: 991px) {
	.adcorp-nc-body { padding: 20px; gap: 12px; }
	.adcorp-nc-card-head { padding: 15px 18px; }
	.adcorp-nc-card-body { margin-left: 16px; padding: 0 14px 14px; }
	.adcorp-nc-leaf { padding: 14px 18px; }
	.adcorp-nc-leaf--d3, .adcorp-nc-leaf--d4 { padding: 12px 14px; }
}

/* mobile — a deliberately tighter, editorial rhythm; chip on top, siblings stacked.
   Vertical space trimmed ~12% vs desktop-scaled: chip, labels, cards and nests all pulled in. */
@media (max-width: 760px) {
	.adcorp-nc--root { flex-direction: column; }
	.adcorp-nc-rootlabel { flex: 0 0 auto; align-items: flex-start; text-align: left; padding: 16px 20px; gap: 4px; }
	.adcorp-nc-rootlabel .adcorp-nc-root-eyebrow { font-size: 0.64rem; margin-bottom: 0; }
	.adcorp-nc-rootlabel strong { font-size: 1.36rem; line-height: 1.08; }
	.adcorp-nc-rootlabel span { font-size: 0.8rem; }
	.adcorp-nc-body { padding: 16px; gap: 10px; }
	.adcorp-nc-body > .adcorp-nc-card + .adcorp-nc-card { margin-top: 6px; }
	.adcorp-nc-tier-label { font-size: 0.66rem; }
	.adcorp-nc-card-head { padding: 11px 16px; }
	.adcorp-nc-card--d1 > .adcorp-nc-card-head { font-size: 1.0rem; }
	.adcorp-nc-card--d2 > .adcorp-nc-card-head { font-size: 0.9rem; }
	.adcorp-nc-card--d3 > .adcorp-nc-card-head, .adcorp-nc-card--d4 > .adcorp-nc-card-head { font-size: 0.85rem; }
	.adcorp-nc-card:has(> .adcorp-nc-card-body) > .adcorp-nc-card-head { padding-bottom: 7px; }
	.adcorp-nc-card-body { margin-left: 12px; padding: 0 12px 12px; gap: 6px; }
	.adcorp-nc-tier-items { flex-direction: column; flex-wrap: nowrap; gap: 6px; }
	.adcorp-nc-tier-items > * { flex: 0 0 auto; }
	.adcorp-nc-leaf { padding: 11px 16px; }
	.adcorp-nc-leaf--d3, .adcorp-nc-leaf--d4 { padding: 9px 14px; }
	.adcorp-nc-leaf-name { font-size: 0.9rem; }
	.adcorp-nc-leaf--d3 .adcorp-nc-leaf-name, .adcorp-nc-leaf--d4 .adcorp-nc-leaf-name { font-size: 0.85rem; }
}

/* compact SVG ownership tree (desktop enhancement; JS swaps it in over the CSS tree) */
.adcorp-ot-d3 { display: none; }
.adcorp-ot-svg { display: block; margin: 0 auto; }
.adcorp-ot-link { fill: none; stroke: rgba(20, 13, 60, 0.22); stroke-width: 1; }
.adcorp-ot-d3 .adcorp-ot-node { width: 100%; height: 100%; min-height: 0; box-sizing: border-box; gap: 2px; }
.adcorp-ot-node--svg { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; line-height: 1.25; }
.adcorp-ot-d3 .adcorp-ot-node--l1 { padding: 10px 22px; }
.adcorp-ot-sub { font-size: 0.72rem; font-weight: 500; letter-spacing: -0.005em; color: rgba(20, 13, 60, 0.55); }
/* <foreignObject> renders box-shadow as a hard dark rectangle in some browsers, and the
   hover shadow/transform repaints over the connectors — keep SVG nodes flat and static */
.adcorp-ot-node--svg, .adcorp-ot-node--svg:hover { box-shadow: none !important; transform: none !important; transition: none; }
@media (min-width: 681px) {
	.adcorp-group--d3.ot-d3-ready .adcorp-orgtree { display: none; }
	.adcorp-group--d3.ot-d3-ready .adcorp-ot-d3 { display: block; overflow-x: auto; padding-bottom: 6px; }
}
/* Companies group structure — ownership tree
   desktop/tablet: bounded horizontal tree · mobile (<=680px): vertical indented outline */
.adcorp-orgtree {
	--ot-conn: rgba(20, 13, 60, 0.20);
	max-width: 1200px;
	margin: 6px auto 0;
	overflow-x: auto;
	padding: 6px 2px 10px;
	-webkit-overflow-scrolling: touch;
}
.adcorp-orgtree ul {
	position: relative; display: flex; justify-content: center;
	list-style: none; margin: 0; padding: 24px 0 0;
}
.adcorp-orgtree > ul { width: max-content; margin: 0 auto; padding-top: 0; }
.adcorp-orgtree li {
	position: relative; display: flex; flex-direction: column; align-items: center;
	padding: 24px 5px 0;
}
/* connector routing — thin, low-contrast parent→child lines (no arrows) */
.adcorp-orgtree li::before, .adcorp-orgtree li::after {
	content: ""; position: absolute; top: 0; width: 50%; height: 24px;
	border-top: 1px solid var(--ot-conn);
}
.adcorp-orgtree li::before { right: 50%; }
.adcorp-orgtree li::after { left: 50%; border-left: 1px solid var(--ot-conn); }
.adcorp-orgtree li:first-child::before { border: 0; }
.adcorp-orgtree li:last-child::after { border: 0; }
.adcorp-orgtree li:last-child::before { border-right: 1px solid var(--ot-conn); }
/* only child: one clean centred connector — the drop plus a single left-aligned stub,
   both at left:50% so they line up exactly (no partial bar / border-right jog).
   Scoped to `li li` so the ROOT node (only child of the root ul, but not nested in a li)
   is left alone — otherwise it draws a stray stub above the L1 box. */
.adcorp-orgtree li li:only-child { padding-top: 24px; }
.adcorp-orgtree li li:only-child::before { border: 0; } /* border:0 (not display:none) so mobile can still draw the spine */
.adcorp-orgtree li li:only-child::after { display: block; top: 0; left: 50%; right: auto; width: 0; height: 24px; border: 0; border-left: 1px solid var(--ot-conn); }
.adcorp-orgtree ul ul::before {
	content: ""; position: absolute; top: 0; left: 50%; width: 0; height: 24px;
	border-left: 1px solid var(--ot-conn);
}
.adcorp-orgtree > ul > li { padding-top: 0; }
.adcorp-orgtree > ul > li::before, .adcorp-orgtree > ul > li::after { display: none; }
/* nodes — weight steps down: solid block -> bordered pill -> text label -> chip */
.adcorp-ot-node {
	display: inline-flex; flex-direction: column; gap: 2px; text-align: center;
	transition: box-shadow .2s ease, transform .2s ease, background-color .2s ease;
}
.adcorp-ot-node--l1 {
	background: #140d3c; color: #fff; padding: 15px 24px; border-radius: 12px;
	box-shadow: 0 8px 20px rgba(20, 13, 60, 0.12);
}
.adcorp-ot-brand { font-family: var(--primary-font); font-size: 1.06rem; font-weight: 700; letter-spacing: -0.02em; }
.adcorp-ot-legal { font-size: 0.75rem; font-weight: 500; color: rgba(255, 255, 255, 0.72); }
/* uniform width AND height per level -> every sibling row is symmetric and even,
   so connectors align exactly and 1-line vs 2-line boxes match. Compact so subtrees
   don't sprawl. line-height is pinned so the min-heights below reliably clear 2 lines. */
.adcorp-ot-name { line-height: 1.3; }
.adcorp-ot-node--l2 { box-sizing: border-box; width: 168px; min-height: 56px; justify-content: center; background: #fff; border: 1px solid rgba(20, 13, 60, 0.15); color: #140d3c; padding: 8px 14px; border-radius: 10px; }
.adcorp-ot-node--l2 .adcorp-ot-name { font-family: var(--primary-font); font-size: 0.88rem; font-weight: 600; letter-spacing: -0.01em; }
.adcorp-ot-node--l3 { box-sizing: border-box; width: 150px; min-height: 52px; justify-content: center; background: #faf9fd; border: 1px solid rgba(20, 13, 60, 0.12); color: #140d3c; padding: 8px 12px; border-radius: 9px; }
.adcorp-ot-node--l3 .adcorp-ot-name { font-family: var(--primary-font); font-size: 0.83rem; font-weight: 600; letter-spacing: -0.005em; }
.adcorp-ot-node--l4 { box-sizing: border-box; width: 134px; min-height: 46px; justify-content: center; background: #eceefb; color: #2c3680; padding: 5px 10px; border-radius: 7px; }
.adcorp-ot-node--l4 .adcorp-ot-name { font-size: 0.75rem; font-weight: 500; }
.adcorp-ot-node--l1:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(20, 13, 60, 0.16); }
.adcorp-ot-node--l2:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(20, 13, 60, 0.10); }
.adcorp-ot-node--l3:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(20, 13, 60, 0.08); }
.adcorp-ot-node--l4:hover { background: #e2e5f8; }
.adcorp-ot-node:focus-visible { outline: 2px solid #2c3680; outline-offset: 3px; border-radius: 6px; }

/* ---- mobile: reflow the same tree into a vertical indented ownership outline ----
   Every box is one line at this width, so all boxes share a fixed height (--ot-row).
   Spacing is via padding (never margin) so the guide spine is one continuous line;
   each tick lands at the row's vertical centre. */
@media (max-width: 680px) {
	.adcorp-orgtree { --ot-row: 40px; --ot-pad: 10px; --ot-tick: 20px; max-width: none; overflow-x: visible; padding: 2px 0; }
	.adcorp-orgtree ul { display: block; padding: 0; margin: 0; width: auto; }
	.adcorp-orgtree > ul { width: auto; margin: 0; }
	.adcorp-orgtree li { display: block; padding: 0; align-items: stretch; }
	/* neutralize the horizontal-mode elbow connectors */
	.adcorp-orgtree li::before, .adcorp-orgtree li::after, .adcorp-orgtree ul ul::before {
		border: 0; content: none;
	}
	/* nodes: fixed-height rows, left-aligned; L2 full width, L3/L4 hug their label */
	.adcorp-ot-node { display: flex; flex-direction: row; align-items: center; justify-content: flex-start; text-align: left; width: auto; min-height: var(--ot-row); }
	.adcorp-ot-node--l1 { flex-direction: column; align-items: flex-start; justify-content: center; min-height: 0; padding: 16px 18px; gap: 2px; }
	.adcorp-ot-brand { font-size: 1.1rem; }
	.adcorp-ot-legal { font-size: 0.78rem; }
	.adcorp-ot-node--l2 { width: 100%; height: var(--ot-row); min-height: var(--ot-row); padding: 0 15px; }
	.adcorp-ot-node--l2 .adcorp-ot-name { font-size: 0.94rem; }
	.adcorp-ot-node--l3 { height: var(--ot-row); min-height: var(--ot-row); padding: 0 14px; }
	.adcorp-ot-node--l3 .adcorp-ot-name { font-size: 0.88rem; }
	.adcorp-ot-node--l4 { height: var(--ot-row); min-height: var(--ot-row); padding: 0 13px; }
	.adcorp-ot-node--l4 .adcorp-ot-name { font-size: 0.82rem; }
	/* nested group: indent + one continuous guide spine, tick to each row centre */
	.adcorp-orgtree li > ul { position: relative; margin: 0 0 0 13px; padding: 0; }
	.adcorp-orgtree li > ul > li { position: relative; padding: var(--ot-pad) 0 0 22px; }
	/* vertical spine: stretch top-to-bottom (bulletproof fill; height:100% collapses on auto-height li).
	   The desktop elbow rules (li:first-child::before{border:0}, li:last-child::after{border:0}, etc.)
	   leak in and out-specify a plain `li > ul > li` selector, erasing first-child spines and last-child
	   ticks — so every first/last/only case is overridden explicitly below at higher specificity. */
	.adcorp-orgtree li > ul > li::before {
		display: block; content: ""; position: absolute; left: 0; right: auto; top: 0; bottom: 0;
		width: 0; height: auto; /* height:auto so top+bottom stretch it; base sets height:24px which would win otherwise */
		border: 0; border-left: 1px solid var(--ot-conn);
	}
	.adcorp-orgtree li > ul > li:first-child::before { border: 0; border-left: 1px solid var(--ot-conn); top: 0; bottom: 0; height: auto; }
	.adcorp-orgtree li > ul > li:last-child::before,
	.adcorp-orgtree li > ul > li:only-child::before {
		display: block; top: 0; bottom: auto; height: calc(var(--ot-pad) + var(--ot-row) / 2);
		border: 0; border-left: 1px solid var(--ot-conn);
	}
	/* horizontal tick: from spine to the box, at the row's vertical centre */
	.adcorp-orgtree li > ul > li::after {
		display: block; content: ""; position: absolute; left: 0; top: calc(var(--ot-pad) + var(--ot-row) / 2);
		width: 22px; height: 0; border: 0; border-top: 1px solid var(--ot-conn);
	}
	.adcorp-orgtree li > ul > li:last-child::after,
	.adcorp-orgtree li > ul > li:only-child::after {
		left: 0; right: auto; top: calc(var(--ot-pad) + var(--ot-row) / 2);
		width: 22px; height: 0; border: 0; border-top: 1px solid var(--ot-conn);
	}
}

@media (prefers-reduced-motion: reduce) {
	.adcorp-ot-node { transition: none; }
	.adcorp-ot-node--l1:hover, .adcorp-ot-node--l2:hover { transform: none; }
}


/* image frame (real photo or replaceable placeholder) */
.adcorp-frame {
	position: relative;
	width: 100%;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid rgba(23, 23, 23, 0.08);
	background: linear-gradient(180deg, #eef1f4 0%, #e4e8ec 100%);
	box-shadow: 0 18px 40px rgba(23, 23, 23, 0.07);
}
.adcorp-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.adcorp-frame-ph {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: rgba(40, 39, 37, 0.42);
}
.adcorp-frame-ph i { font-size: 1.6rem; }
.adcorp-frame-ph span { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }

/* full-width establishing image band */
.adcorp-band { position: relative; width: 100%; height: clamp(260px, 38vw, 520px); overflow: hidden; }
.adcorp-band img { width: 100%; height: 100%; object-fit: cover; }

/* two-column holding layout */
.adcorp-holding-media { margin-bottom: 28px; }

/* CSR program card with image */
.adcorp-program {
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(23, 23, 23, 0.06);
	background: rgba(249, 246, 243, 0.72);
}
.adcorp-program .adcorp-frame { border-radius: 0; border: 0; box-shadow: none; }
.adcorp-program-body { padding: 26px 28px 28px; }
.adcorp-program-body h3 { margin: 12px 0 10px; font-family: var(--primary-font); font-size: 1.35rem; font-weight: 600; letter-spacing: -0.03em; color: var(--black); }
.adcorp-program-body p { margin: 0; font-size: 14.5px; line-height: 1.62; color: rgba(56, 54, 50, 0.76); }






/* ecosystem brand logos as primary section identity (Companies + homepage) */
.adcorp-holding-logo { margin: 0; line-height: 0; }
.adcorp-holding-logo img { height: clamp(38px, 4vw, 50px); width: auto; max-width: 100%; display: block; }
.adcorp-biz-card-logo { display: block; margin-bottom: 14px; line-height: 0; }
.adcorp-biz-card-logo img { height: 34px; width: auto; max-width: 100%; }




/* ===== Leadership — continuous page ===== */
/* two equal halves; image and text both hug the centre gap, slack sits on the
   outer edges — so the alternating rows mirror each other with an identical gap */
.adcorp-exec { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 76px); align-items: center; }
.adcorp-exec + .adcorp-exec { margin-top: clamp(44px, 6vw, 84px); }
.adcorp-exec-media { justify-self: end; }
.adcorp-exec-body { justify-self: start; max-width: 460px; }
.adcorp-exec--rev .adcorp-exec-media { order: 2; justify-self: start; }
.adcorp-exec--rev .adcorp-exec-body { order: 1; justify-self: end; }
.adcorp-exec-media {
	width: 100%; max-width: 380px; aspect-ratio: 4 / 5; border-radius: 18px; overflow: hidden;
	background: linear-gradient(180deg, #eef0f5 0%, #e0e3ec 100%);
	border: 1px solid rgba(23, 23, 23, 0.06); box-shadow: 0 18px 44px rgba(23, 23, 23, 0.08);
	display: flex; align-items: center; justify-content: center;
}
.adcorp-exec--lead .adcorp-exec-media { max-width: 430px; }
.adcorp-exec-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; }
.adcorp-exec-media .adcorp-person-initials { font-size: 3rem; }
.adcorp-exec-role { display: block; margin-bottom: 14px; font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(40, 39, 37, 0.5); }
.adcorp-exec-name { margin: 0 0 18px; font-family: var(--primary-font); font-size: clamp(1.7rem, 2.6vw, 2.5rem); font-weight: 600; letter-spacing: -0.03em; color: var(--black); }
.adcorp-exec-bio { margin: 0; font-size: 1.05rem; line-height: 1.75; color: rgba(56, 54, 50, 0.8); }
@media (max-width: 767px) {
	.adcorp-exec, .adcorp-exec--rev { grid-template-columns: 1fr; gap: 26px; }
	.adcorp-exec--rev .adcorp-exec-media { order: -1; }
	.adcorp-exec-media, .adcorp-exec--rev .adcorp-exec-media { justify-self: center; }
	.adcorp-exec-body, .adcorp-exec--rev .adcorp-exec-body { justify-self: stretch; max-width: none; }
	.adcorp-exec-media, .adcorp-exec--lead .adcorp-exec-media { max-width: 300px; }
}

/* committee portraits sit head-up; short bios */
.adcorp-committee .adcorp-person-photo img { object-position: center top; }
/* reserve 2 lines for the role so the bios align across cards regardless of title length */
.adcorp-committee .adcorp-person-role { min-height: 3em; }
.adcorp-person-bio { margin: 10px auto 0; max-width: 30ch; font-size: 13.5px; line-height: 1.55; text-align: center; color: rgba(56, 54, 50, 0.6); }

/* CTA secondary action */
.adcorp-cta-actions { display: flex; gap: 24px; justify-content: center; align-items: center; flex-wrap: wrap; }
.adcorp-cta-alt { display: inline-flex; align-items: center; gap: 8px; font-family: var(--primary-font); font-size: 15px; font-weight: 600; letter-spacing: -0.01em; color: var(--black); }
.adcorp-cta-alt i { transition: transform .25s ease; }
.adcorp-cta-alt:hover { color: var(--dark-gray); }
.adcorp-cta-alt:hover i { transform: translateX(4px); }





/* CTA section spacing (used on inner pages via x-cta) */
.adcorp-cta-wrap { padding: clamp(52px, 6vw, 88px) 0 clamp(80px, 10vw, 128px); }



/* ===== CSR page ===== */
.adcorp-section-lead { max-width: 600px; margin: 16px auto 0; font-size: 16px; line-height: 1.7; text-align: center; color: rgba(56, 54, 50, 0.72); }
.adcorp-prose { max-width: 680px; margin: 0 auto; }
.adcorp-prose p { margin: 0 0 22px; font-size: 1.06rem; line-height: 1.8; text-align: center; color: rgba(56, 54, 50, 0.82); }
.adcorp-prose p:last-child { margin-bottom: 0; }
.adcorp-highlights { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 12px; }
.adcorp-highlights li { position: relative; padding-left: 24px; font-size: 15px; line-height: 1.5; color: rgba(56, 54, 50, 0.82); }
.adcorp-highlights li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--dark-gray); }
.adcorp-feature-meta { margin: 26px 0 0; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(40, 39, 37, 0.5); }
.adcorp-feature-meta span { margin: 0 8px; color: rgba(40, 39, 37, 0.3); }
/* foundation identity — a borderless lockup (logo on white + name), no card box */
.adcorp-foundation-lockup { display: flex; flex-direction: column; align-items: flex-start; }
.adcorp-foundation-lockup-logo { display: block; height: 36px; width: auto; margin-bottom: 16px; }
.adcorp-foundation-lockup-name { font-family: var(--primary-font); font-size: clamp(1.25rem, 1.5vw, 1.4rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; color: var(--black); }
.adcorp-foundation-lockup-desc { margin: 12px 0 0; font-size: 15px; line-height: 1.68; color: rgba(56, 54, 50, 0.78); max-width: 40ch; }
/* home CSR: centre the lockup whenever it stacks under the (centred) intro */
@media (max-width: 991.98px) {
	#csr .adcorp-foundation-lockup { align-items: center; text-align: center; }
}

/* CSR — foundation identity plate: a light card beneath the centred approach (site card style),
   content centred */
.adcorp-foundation-plate {
	max-width: 640px; margin: clamp(44px, 5vw, 60px) auto 0;
	padding: clamp(34px, 4vw, 48px);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 247, 245, 0.94) 100%);
	border: 1px solid rgba(23, 23, 23, 0.08);
	display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px;
}
.adcorp-foundation-plate-logo { display: block; height: 40px; width: auto; }
.adcorp-foundation-plate-name { font-family: var(--primary-font); font-size: clamp(1.25rem, 1.5vw, 1.4rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; color: var(--black); }
.adcorp-foundation-plate-desc { margin: 0; font-size: 15px; line-height: 1.7; color: rgba(56, 54, 50, 0.78); max-width: 42ch; text-align: center; }
.adcorp-value i { display: block; margin-bottom: 18px; font-size: 26px; color: var(--dark-gray); }
.adcorp-value h3 { margin: 0 0 8px; font-family: var(--primary-font); font-size: 1.15rem; font-weight: 600; letter-spacing: -0.02em; color: var(--black); }
.adcorp-value p { margin: 0; font-size: 14.5px; line-height: 1.62; color: rgba(56, 54, 50, 0.72); }
.adcorp-orgchart { margin-top: clamp(24px, 3vw, 40px); }
/* ---- mobile: centre section intros, value cards, and exec profiles ---- */
@media (max-width: 767px) {
	.adcorp-value { text-align: center; }
	.adcorp-exec-body { text-align: center; justify-self: center; margin-left: auto; margin-right: auto; }
	.adcorp-exec-media { justify-self: center; }
}







/* ===== Contact page ===== */
.adcorp-inquiry {
	max-width: 860px; margin: 0 auto;
	background: linear-gradient(180deg, #fbfaf8 0%, #f5f1ec 100%);
	border: 1px solid rgba(23, 23, 23, 0.06);
	border-radius: 28px; padding: clamp(30px, 5vw, 60px);
}
.adcorp-inquiry .adcorp-section-head { margin-bottom: clamp(28px, 4vw, 40px); }
.adcorp-btn-block { width: 100%; justify-content: center; margin-top: 4px; }
/* contact submit loading state */
.adcorp-btn-primary:disabled, .adcorp-btn-primary[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }
.adcorp-btn-primary:disabled:hover { background: var(--dark-gray); transform: none; }
.adcorp-btn-primary .spinner-border { width: 1rem; height: 1rem; border-width: 0.15em; vertical-align: -0.15em; }
.adcorp-contact-cards { display: grid; gap: 16px; }
.adcorp-contact-card {
	display: flex; gap: 18px; padding: 22px 24px; background: #fff;
	border: 1px solid rgba(23, 23, 23, 0.08); border-radius: 16px;
	box-shadow: 0 6px 20px rgba(23, 23, 23, 0.05);
}
.adcorp-contact-icon {
	flex: none; width: 44px; height: 44px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	background: var(--very-light-gray); color: var(--dark-gray);
}
.adcorp-contact-icon i { font-size: 18px; }
.adcorp-contact-card-label { display: block; margin-bottom: 6px; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(40, 39, 37, 0.5); }
.adcorp-contact-card-value { margin: 0; font-size: 15px; line-height: 1.6; color: var(--black); }
.adcorp-contact-card-value a { color: var(--black); text-decoration: none; }
.adcorp-contact-card-value a:hover { color: var(--dark-gray); }
.adcorp-contact-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: var(--dark-gray); }
.adcorp-contact-link i { font-size: 13px; transition: transform .25s ease; }
.adcorp-contact-link:hover { color: var(--black); }
.adcorp-contact-link:hover i { transform: translate(2px, -2px); }








/* sub-holding image carousel (Companies): native scroll-snap so it's swipe/trackpad
   scrollable everywhere, plus clickable dots, mouse click-drag, and autoplay */
.adcorp-carousel {
	position: relative;
	width: 100%;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid rgba(23, 23, 23, 0.08);
	background: linear-gradient(180deg, #eef1f4 0%, #e4e8ec 100%);
	box-shadow: 0 18px 40px rgba(23, 23, 23, 0.07);
}
.adcorp-carousel-track {
	display: flex;
	overflow-x: auto; overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;                 /* Firefox */
	cursor: grab; user-select: none; -webkit-user-select: none;
	overscroll-behavior-x: contain;
}
.adcorp-carousel-track::-webkit-scrollbar { display: none; }   /* Chrome/Safari/Edge */
.adcorp-carousel-track.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.adcorp-carousel-slide { flex: 0 0 100%; scroll-snap-align: center; aspect-ratio: 3 / 2; }
.adcorp-carousel-slide img {
	display: block; width: 100%; height: 100%; object-fit: cover;
	-webkit-user-drag: none; user-drag: none; pointer-events: none;
}
.adcorp-carousel-dots {
	position: absolute; left: 0; right: 0; bottom: 14px;
	display: flex; gap: 7px; justify-content: center; align-items: center;
	margin: 0; padding: 0;
}
.adcorp-carousel-dot {
	width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px;
	background: rgba(255, 255, 255, 0.55); cursor: pointer;
	box-shadow: 0 1px 3px rgba(23, 23, 23, 0.28);
	transition: width .3s ease, background-color .3s ease;
}
.adcorp-carousel-dot:hover { background: rgba(255, 255, 255, 0.85); }
.adcorp-carousel-dot.is-active { width: 22px; background: #fff; }
@media (prefers-reduced-motion: reduce) { .adcorp-carousel-track { scroll-behavior: auto; } }
























