:root {
	--cgi-navy: #0a0b0f;
	--cgi-navy-2: #121721;
	--cgi-ink: #050505;
	--cgi-gold: #f5a21a;
	--cgi-gold-2: #ffd15c;
	--cgi-red: #e51d2d;
	--cgi-cyan: #48c6ec;
	--cgi-cyan-2: #b4efff;
	--cgi-white: #ffffff;
	--cgi-cream: #f6fbfd;
	--cgi-muted: #66717c;
	--cgi-line: rgba(8, 18, 34, 0.12);
	--cgi-shadow: 0 24px 70px rgba(4, 16, 34, 0.14);
	--cgi-radius: 8px;
	--cgi-max: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--cgi-white);
	color: var(--cgi-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

img,
iframe {
	max-width: 100%;
}

img {
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: var(--cgi-gold);
}

button,
input,
textarea {
	font: inherit;
}

.container {
	width: min(calc(100% - 40px), var(--cgi-max));
	margin: 0 auto;
}

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

.skip-link:focus {
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	clip: auto;
	z-index: 9999;
	padding: 10px 14px;
	background: var(--cgi-gold);
	color: var(--cgi-ink);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(6, 22, 47, 0.08);
	backdrop-filter: blur(18px);
}

.admin-bar .site-header {
	top: 32px;
}

.site-header.is-scrolled {
	box-shadow: 0 18px 42px rgba(6, 22, 47, 0.12);
}

.topbar {
	background: linear-gradient(90deg, var(--cgi-ink), var(--cgi-navy-2));
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
}

.topbar__inner,
.topbar__links,
.nav-shell,
.hero__actions,
.footer-cta__actions,
.social-links {
	display: flex;
	align-items: center;
	gap: 18px;
}

.topbar__inner {
	min-height: 38px;
	justify-content: space-between;
}

.topbar__links a {
	color: rgba(255, 255, 255, 0.88);
}

.nav-shell {
	min-height: 84px;
	justify-content: space-between;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 210px;
	color: var(--cgi-navy);
}

.brand--image img {
	width: min(260px, 48vw);
	max-height: 70px;
	object-fit: contain;
}

.brand__mark {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 8px;
	background: var(--cgi-navy);
	color: var(--cgi-gold-2);
	border: 1px solid rgba(245, 162, 26, 0.55);
	font-weight: 800;
}

.brand__text {
	display: grid;
	gap: 0;
	line-height: 1.15;
}

.brand__text strong {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0;
}

.brand__text small {
	font-size: 12px;
	color: var(--cgi-muted);
}

.custom-logo-link img {
	max-width: 230px;
	max-height: 68px;
	object-fit: contain;
}

.primary-nav .menu,
.footer-menu,
.footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.primary-nav .menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.primary-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 8px 10px;
	border-radius: 8px;
	color: var(--cgi-navy);
	font-size: 14px;
	font-weight: 700;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
	background: rgba(72, 198, 236, 0.14);
	color: var(--cgi-navy);
}

.header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 16px;
	border-radius: 8px;
	background: var(--cgi-navy);
	color: var(--cgi-white);
	font-weight: 800;
	font-size: 14px;
	white-space: nowrap;
}

.header-cta:hover {
	background: var(--cgi-red);
	color: var(--cgi-white);
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--cgi-line);
	border-radius: 8px;
	background: var(--cgi-white);
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.nav-toggle span:not(.screen-reader-text) {
	width: 20px;
	height: 2px;
	background: var(--cgi-navy);
}

.hero {
	min-height: 760px;
	display: flex;
	align-items: center;
	background-position: center;
	background-size: cover;
	color: var(--cgi-white);
}

.hero__inner {
	padding: 130px 0 90px;
}

.eyebrow {
	margin: 0 0 14px;
	color: var(--cgi-cyan-2);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.hero h1,
.page-hero h1 {
	max-width: 780px;
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 58px;
	line-height: 1.03;
	font-weight: 700;
	letter-spacing: 0;
}

.hero p {
	max-width: 690px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 19px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 20px;
	border-radius: 8px;
	border: 1px solid transparent;
	font-weight: 900;
	font-size: 15px;
	cursor: pointer;
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
	transform: translateY(-1px);
}

.btn--gold {
	background: linear-gradient(90deg, var(--cgi-gold), var(--cgi-red));
	color: var(--cgi-ink);
	border-color: transparent;
}

.btn--gold:hover {
	background: linear-gradient(90deg, var(--cgi-red), var(--cgi-gold));
	color: var(--cgi-white);
}

.btn--ghost {
	color: var(--cgi-white);
	border-color: rgba(255, 255, 255, 0.36);
	background: rgba(255, 255, 255, 0.08);
}

.btn--ghost:hover {
	background: var(--cgi-white);
	color: var(--cgi-navy);
}

.btn--light {
	background: var(--cgi-white);
	color: var(--cgi-navy);
	border-color: var(--cgi-white);
}

.hero__actions {
	margin-top: 32px;
	flex-wrap: wrap;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 170px));
	gap: 14px;
	margin-top: 54px;
}

.hero-stats div {
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
}

.hero-stats strong {
	display: block;
	color: var(--cgi-cyan-2);
	font-size: 30px;
	line-height: 1;
}

.hero-stats span {
	display: block;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
	font-weight: 700;
}

.trust-band {
	background: var(--cgi-ink);
	color: rgba(255, 255, 255, 0.72);
}

.trust-band__inner {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 1px;
	min-height: 84px;
}

.trust-band span {
	display: grid;
	place-items: center;
	padding: 18px 10px;
	border-left: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	text-align: center;
}

.section {
	padding: 96px 0;
}

.section--compact {
	padding-top: 72px;
	padding-bottom: 72px;
}

.section--light {
	background: var(--cgi-cream);
}

.section-header {
	max-width: 720px;
	margin-bottom: 42px;
}

.section-header h2,
.split-feature h2,
.media-grid h2,
.newsletter-box h2,
.footer-cta h2,
.page-hero h1,
.content-area h1,
.content-area h2 {
	margin: 0;
	color: var(--cgi-navy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 42px;
	line-height: 1.12;
	letter-spacing: 0;
}

.section-header p:not(.eyebrow),
.split-feature p,
.media-grid p,
.content-area p {
	color: var(--cgi-muted);
	font-size: 17px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.services-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.news-card,
.feature-panel,
.contact-panel,
.contact-form {
	border: 1px solid var(--cgi-line);
	border-radius: 8px;
	background: var(--cgi-white);
	box-shadow: 0 18px 48px rgba(8, 18, 34, 0.06);
}

.service-card {
	min-height: 292px;
	padding: 26px;
	position: relative;
	overflow: hidden;
}

.service-card::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 4px;
	background: var(--cgi-gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
}

.service-card:hover::after {
	transform: scaleX(1);
}

.service-card__icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--cgi-ink), var(--cgi-red));
	color: var(--cgi-white);
	font-weight: 900;
}

.service-card h3,
.project-card h3,
.news-card h2,
.news-card h3,
.feature-panel h3,
.contact-panel h2,
.contact-form h2 {
	margin: 18px 0 10px;
	color: var(--cgi-navy);
	font-size: 21px;
	line-height: 1.22;
	letter-spacing: 0;
}

.service-card p,
.project-card p,
.news-card p,
.feature-panel p {
	margin: 0;
	color: var(--cgi-muted);
}

.sector-grid,
.values-grid,
.partners-grid {
	display: grid;
	gap: 14px;
}

.sector-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sector-pill,
.partners-grid div {
	display: flex;
	align-items: center;
	min-height: 74px;
	padding: 18px;
	border-radius: 8px;
	border: 1px solid var(--cgi-line);
	background: var(--cgi-white);
	color: var(--cgi-navy);
	font-weight: 900;
	box-shadow: 0 14px 34px rgba(8, 18, 34, 0.05);
}

.sector-pill::before {
	content: "";
	width: 12px;
	height: 12px;
	margin-right: 12px;
	border-radius: 8px;
	background: var(--cgi-cyan);
	box-shadow: 0 0 0 4px rgba(72, 198, 236, 0.16);
	flex: 0 0 auto;
}

.values-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card {
	min-height: 190px;
	padding: 26px;
	border-radius: 8px;
	background: var(--cgi-white);
	border: 1px solid var(--cgi-line);
	box-shadow: 0 18px 42px rgba(8, 18, 34, 0.06);
}

.value-card h3 {
	margin: 0 0 10px;
	color: var(--cgi-navy);
	font-size: 22px;
}

.value-card p {
	margin: 0;
	color: var(--cgi-muted);
}

.split-feature {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
	gap: 42px;
	align-items: center;
}

.feature-panel {
	padding: 30px;
	background: var(--cgi-navy);
	color: var(--cgi-white);
}

.feature-panel h3,
.feature-panel p {
	color: var(--cgi-white);
}

.check-list,
.contact-list {
	list-style: none;
	padding: 0;
	margin: 20px 0 0;
	display: grid;
	gap: 12px;
}

.check-list li {
	position: relative;
	padding-left: 30px;
	color: rgba(255, 255, 255, 0.84);
}

.section--light .check-list li,
.media-grid .check-list li,
.content-area .check-list li {
	color: var(--cgi-ink);
}

.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 12px;
	height: 12px;
	border-radius: 8px;
	background: var(--cgi-cyan);
	box-shadow: 0 0 0 4px rgba(72, 198, 236, 0.16);
}

.text-link {
	display: inline-flex;
	margin-top: 16px;
	font-weight: 900;
	color: var(--cgi-navy);
	border-bottom: 2px solid var(--cgi-red);
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.project-card {
	overflow: hidden;
	border-radius: 8px;
	background: var(--cgi-white);
	box-shadow: var(--cgi-shadow);
	border: 1px solid var(--cgi-line);
}

.project-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.project-card__body {
	padding: 26px;
}

.tag-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tag-row span {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 10px;
	border-radius: 8px;
	background: rgba(229, 29, 45, 0.1);
	color: var(--cgi-navy);
	font-size: 12px;
	font-weight: 900;
}

.mini-list {
	display: grid;
	gap: 8px;
	padding: 0;
	margin: 18px 0 0;
	list-style: none;
}

.mini-list li {
	position: relative;
	padding-left: 22px;
	color: var(--cgi-muted);
}

.mini-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 11px;
	width: 8px;
	height: 8px;
	border-radius: 8px;
	background: var(--cgi-red);
}

.mini-list--compact {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 14px;
}

.service-detail-stack {
	display: grid;
	gap: 22px;
}

.service-detail-card {
	display: grid;
	grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
	gap: 28px;
	padding: 30px;
	border: 1px solid var(--cgi-line);
	border-radius: 8px;
	background: var(--cgi-white);
	box-shadow: 0 18px 42px rgba(8, 18, 34, 0.06);
}

.service-detail-card__intro h3 {
	margin: 0 0 10px;
	color: var(--cgi-navy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 32px;
	line-height: 1.12;
	letter-spacing: 0;
}

.service-detail-card__intro h4 {
	margin: 0 0 14px;
	color: var(--cgi-ink);
	font-size: 18px;
}

.service-detail-card__intro p {
	margin: 0;
	color: var(--cgi-muted);
}

.service-detail-card__lists {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
	gap: 20px;
}

.service-detail-card__lists h5 {
	margin: 0 0 10px;
	color: var(--cgi-navy);
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0;
}

.media-section {
	background: var(--cgi-navy);
	color: var(--cgi-white);
}

.media-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
	gap: 48px;
	align-items: center;
}

.media-grid h2,
.media-grid p {
	color: var(--cgi-white);
}

.video-frame {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: #000;
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
	aspect-ratio: 16 / 9;
}

.video-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.investigations-band {
	background: var(--cgi-ink);
	color: var(--cgi-white);
}

.investigations-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.investigations-band h2 {
	max-width: 760px;
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 40px;
	line-height: 1.16;
	letter-spacing: 0;
}

.investigations-band p:not(.eyebrow) {
	max-width: 780px;
	color: rgba(255, 255, 255, 0.72);
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.news-card {
	padding: 26px;
	min-height: 230px;
}

.partners-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.final-cta {
	background: linear-gradient(90deg, rgba(6, 22, 47, 0.98), rgba(9, 13, 20, 0.94)), url("../images/hero-corporate.png");
	background-size: cover;
	background-position: center;
	color: var(--cgi-white);
}

.final-cta__inner {
	max-width: 850px;
	margin: 0 auto;
	text-align: center;
}

.final-cta h2 {
	margin: 0;
	color: var(--cgi-white);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 46px;
	line-height: 1.1;
	letter-spacing: 0;
}

.final-cta p:not(.eyebrow) {
	margin: 18px auto 0;
	max-width: 760px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 18px;
}

.final-cta .hero__actions {
	justify-content: center;
}

.news-card__date {
	color: var(--cgi-red);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.newsletter-section {
	background: var(--cgi-navy-2);
	color: var(--cgi-white);
}

.newsletter-box {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
	gap: 40px;
	align-items: center;
}

.newsletter-box h2 {
	color: var(--cgi-white);
}

.newsletter-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
}

input,
textarea {
	width: 100%;
	border: 1px solid rgba(6, 22, 47, 0.16);
	border-radius: 8px;
	background: var(--cgi-white);
	padding: 13px 14px;
	color: var(--cgi-ink);
	outline: none;
}

textarea {
	resize: vertical;
}

input:focus,
textarea:focus {
	border-color: var(--cgi-cyan);
	box-shadow: 0 0 0 4px rgba(72, 198, 236, 0.16);
}

.form-notice {
	grid-column: 1 / -1;
	margin: 4px 0 0;
	color: var(--cgi-gold-2);
	font-weight: 800;
}

.page-hero {
	background: linear-gradient(90deg, rgba(6, 22, 47, 0.96), rgba(6, 22, 47, 0.82)), url("../images/hero-corporate.png");
	background-size: cover;
	background-position: center;
	color: var(--cgi-white);
}

.page-hero__inner {
	padding: 118px 0 76px;
}

.page-hero h1 {
	color: var(--cgi-white);
}

.page-hero p:not(.eyebrow) {
	max-width: 760px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 18px;
}

.timeline-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.timeline-grid div {
	padding: 24px;
	border-left: 3px solid var(--cgi-red);
	background: var(--cgi-white);
	border-radius: 8px;
	box-shadow: 0 16px 38px rgba(6, 22, 47, 0.06);
}

.timeline-grid span {
	color: var(--cgi-red);
	font-weight: 900;
}

.timeline-grid h3 {
	margin: 12px 0 8px;
	color: var(--cgi-navy);
}

.contact-grid {
	display: grid;
	grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
	gap: 28px;
	align-items: start;
}

.contact-panel,
.contact-form {
	padding: 30px;
}

.contact-list li {
	display: grid;
	gap: 4px;
	padding: 0 0 16px;
	border-bottom: 1px solid var(--cgi-line);
}

.contact-list strong {
	color: var(--cgi-navy);
}

.contact-list span,
.contact-list a {
	color: var(--cgi-muted);
}

.contact-form {
	display: grid;
	gap: 12px;
}

.contact-form label {
	font-weight: 800;
	color: var(--cgi-navy);
}

.content-area {
	max-width: 860px;
}

.content-area img,
.single-featured img {
	border-radius: 8px;
	box-shadow: var(--cgi-shadow);
}

.site-footer {
	background: var(--cgi-ink);
	color: rgba(255, 255, 255, 0.74);
}

.footer-cta {
	background: var(--cgi-navy);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 44px 0;
}

.footer-cta h2 {
	color: var(--cgi-white);
	font-size: 34px;
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(250px, 1.2fr) repeat(3, minmax(0, 1fr));
	gap: 34px;
	padding: 58px 0 34px;
}

.brand--footer {
	min-width: 0;
	color: var(--cgi-white);
}

.brand--footer .brand__text small {
	color: rgba(255, 255, 255, 0.64);
}

.footer-brand p {
	max-width: 330px;
}

.site-footer h3 {
	margin: 0 0 16px;
	color: var(--cgi-white);
	font-size: 16px;
}

.footer-menu,
.footer-list {
	display: grid;
	gap: 10px;
}

.footer-menu a,
.footer-list a {
	color: rgba(255, 255, 255, 0.76);
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 22px 0 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 14px;
}

.floating-actions {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 1001;
	display: grid;
	gap: 10px;
}

.floating-actions__item {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 8px;
	color: var(--cgi-white);
	font-size: 13px;
	font-weight: 900;
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.floating-actions__item--whatsapp {
	background: #128c4a;
}

.floating-actions__item--call {
	background: var(--cgi-gold);
	color: var(--cgi-ink);
}

@media (max-width: 1080px) {
	.header-cta {
		display: none;
	}

	.primary-nav a {
		padding-inline: 8px;
		font-size: 13px;
	}

	.services-grid,
	.timeline-grid,
	.sector-grid,
	.partners-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.values-grid,
	.service-detail-card,
	.service-detail-card__lists {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 860px) {
	.admin-bar .site-header {
		top: 46px;
	}

	.topbar {
		display: none;
	}

	.nav-shell {
		min-height: 72px;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.primary-nav {
		position: absolute;
		left: 20px;
		right: 20px;
		top: 72px;
		display: none;
		padding: 12px;
		border-radius: 8px;
		background: var(--cgi-white);
		box-shadow: var(--cgi-shadow);
	}

	.primary-nav.is-open {
		display: block;
	}

	.primary-nav .menu {
		display: grid;
		gap: 2px;
		justify-content: stretch;
	}

	.primary-nav a {
		width: 100%;
		justify-content: flex-start;
	}

	.hero {
		min-height: 660px;
		background-position: center right;
	}

	.hero h1,
	.page-hero h1 {
		font-size: 42px;
	}

	.hero p {
		font-size: 17px;
	}

	.hero-stats,
	.trust-band__inner,
	.projects-grid,
	.media-grid,
	.news-grid,
	.newsletter-box,
	.contact-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.media-grid,
	.split-feature {
		grid-template-columns: 1fr;
	}

	.investigations-band__inner,
	.footer-cta__inner,
	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.newsletter-form {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 72px 0;
	}

	.section-header h2,
	.split-feature h2,
	.media-grid h2,
	.newsletter-box h2,
	.investigations-band h2,
	.final-cta h2 {
		font-size: 34px;
	}
}

@media (max-width: 560px) {
	.container {
		width: min(calc(100% - 28px), var(--cgi-max));
	}

	.brand {
		min-width: 0;
	}

	.brand__mark {
		width: 44px;
		height: 44px;
	}

	.brand__text strong {
		max-width: 190px;
		font-size: 13px;
	}

	.hero {
		min-height: 620px;
	}

	.hero__inner {
		padding: 86px 0 62px;
	}

	.hero h1,
	.page-hero h1 {
		font-size: 34px;
	}

	.hero__actions,
	.footer-cta__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.btn {
		width: 100%;
	}

	.services-grid,
	.services-grid--three,
	.timeline-grid,
	.sector-grid,
	.values-grid,
	.partners-grid,
	.mini-list--compact {
		grid-template-columns: 1fr;
	}

	.service-card {
		min-height: auto;
	}

	.page-hero__inner {
		padding: 88px 0 58px;
	}

	.contact-panel,
	.contact-form,
	.project-card__body,
	.news-card,
	.feature-panel,
	.service-detail-card,
	.value-card {
		padding: 22px;
	}

	.floating-actions {
		right: 12px;
		bottom: 12px;
	}
}
