/**
 * Acqua company / About page.
 *
 * A compact editorial system: no decorative stock photography, no isolated
 * card wall. The visual hierarchy explains how audience, support, practical
 * work and contract type relate to one another.
 */

.about-page {
	--about-navy: #102d4c;
	--about-navy-deep: #091d33;
	--about-aqua: #64dbe2;
	--about-sand: #d7c39b;
	--about-paper: #fffdf8;
	--about-line: rgba(16, 45, 76, .18);
	color: var(--about-navy);
}

.about-page .lower-section {
	padding-block: clamp(72px, 10vw, 148px);
}

.about-page .section__inner {
	width: min(100% - 36px, 1220px);
}

.about-kicker {
	display: flex;
	gap: 12px;
	align-items: center;
	margin: 0 0 24px;
	font-family: "Inter", sans-serif;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.5;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.about-kicker::before {
	width: 28px;
	height: 1px;
	background: currentColor;
	content: "";
}

.about-section-heading {
	max-width: 850px;
}

.about-section-heading h2,
.about-intro h2,
.about-direct h2 {
	margin: 0;
	font-family: "Shippori Mincho", serif;
	font-size: clamp(34px, 8.2vw, 72px);
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: -.035em;
}

.about-section-heading > p:last-child,
.about-intro__copy,
.about-direct .section__inner > p:not(.about-kicker) {
	font-size: clamp(15px, 2vw, 18px);
	font-weight: 600;
	line-height: 2;
}

.about-section-heading > p:last-child {
	max-width: 720px;
	margin: 24px 0 0;
}

.about-intro {
	position: relative;
	overflow: hidden;
}

.about-intro::after {
	position: absolute;
	top: clamp(42px, 8vw, 92px);
	right: max(-130px, -8vw);
	width: clamp(210px, 34vw, 510px);
	aspect-ratio: 1;
	border: 1px solid rgba(138, 116, 70, .2);
	border-radius: 50%;
	box-shadow:
		0 0 0 34px rgba(138, 116, 70, .055),
		0 0 0 78px rgba(138, 116, 70, .035);
	content: "";
	pointer-events: none;
}

.about-intro .section__inner {
	position: relative;
	z-index: 1;
}

.about-intro__layout {
	display: grid;
	gap: 30px;
}

.about-intro__copy {
	max-width: 640px;
}

.about-intro__copy p {
	margin: 0;
}

.about-intro__copy p + p {
	margin-top: 16px;
}

.about-continuum {
	display: grid;
	margin: clamp(48px, 8vw, 92px) 0 0;
	padding: 0;
	border-top: 1px solid var(--about-line);
	list-style: none;
}

.about-continuum li {
	display: grid;
	grid-template-columns: 34px minmax(80px, .65fr) 1.6fr;
	gap: 12px;
	align-items: baseline;
	padding: 21px 0;
	border-bottom: 1px solid var(--about-line);
}

.about-continuum span,
.about-continuum strong {
	font-family: "Inter", sans-serif;
	font-weight: 800;
	letter-spacing: .08em;
}

.about-continuum span {
	color: #80693a;
	font-size: 11px;
}

.about-continuum strong {
	font-size: 15px;
}

.about-continuum small {
	font-size: 13px;
	font-weight: 700;
	line-height: 1.75;
}

.about-map {
	position: relative;
	overflow: hidden;
	color: #fff;
	background:
		linear-gradient(rgba(100, 219, 226, .08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(100, 219, 226, .08) 1px, transparent 1px),
		var(--about-navy-deep) !important;
	background-size: 64px 64px;
}

.about-map::after {
	position: absolute;
	top: 16%;
	right: -12%;
	width: min(56vw, 720px);
	aspect-ratio: 1;
	border: 1px solid rgba(100, 219, 226, .22);
	border-radius: 50%;
	box-shadow:
		0 0 0 56px rgba(100, 219, 226, .035),
		0 0 0 118px rgba(100, 219, 226, .025);
	content: "";
	pointer-events: none;
}

.about-map .section__inner {
	position: relative;
	z-index: 1;
}

.about-map .about-kicker {
	color: var(--about-aqua);
}

.about-map .about-section-heading > p:last-child {
	color: rgba(255, 255, 255, .76);
}

.about-map__rows {
	margin-top: clamp(48px, 7vw, 86px);
	border-top: 1px solid rgba(255, 255, 255, .22);
}

.about-map__row {
	display: grid;
	gap: 14px;
	padding: 28px 0 32px;
	border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.about-map__row > p {
	margin: 0;
	color: rgba(255, 255, 255, .58);
	font-family: "Inter", sans-serif;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .13em;
}

.about-map__row > p span {
	display: inline-block;
	min-width: 74px;
	color: var(--about-aqua);
}

.about-map__row h3 {
	margin: 0;
	color: #fff;
	font-family: "Shippori Mincho", serif;
	font-size: clamp(25px, 5vw, 38px);
	font-weight: 500;
}

.about-map__row > div {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
}

.about-map__row > div > span,
.about-map__row > div > a {
	position: relative;
	padding: 7px 0 7px 16px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.55;
	text-decoration: none;
}

.about-map__row > div > span::before,
.about-map__row > div > a::before {
	position: absolute;
	top: 15px;
	left: 0;
	width: 6px;
	height: 6px;
	border: 1px solid var(--about-aqua);
	border-radius: 50%;
	content: "";
}

.about-map__row > div > a small {
	display: block;
	margin-top: 2px;
	color: rgba(255, 255, 255, .56);
	font-size: 10px;
	font-weight: 700;
}

.about-map__row > div > a:hover,
.about-map__row > div > a:focus-visible {
	color: var(--about-aqua);
}

.about-map__row > div > a:focus-visible,
.about-text-link:focus-visible,
.about-audience-card:focus-visible,
.about-service-list a:focus-visible,
.about-direct a:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 5px;
}

.about-text-link {
	display: flex;
	gap: 24px;
	align-items: center;
	justify-content: space-between;
	width: min(100%, 570px);
	margin-top: 32px;
	padding: 17px 0;
	border-top: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	color: var(--about-navy);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.about-text-link--light {
	color: #fff;
}

.about-text-link b {
	font-size: 18px;
	transition: transform .2s ease;
}

.about-text-link:hover b,
.about-text-link:focus-visible b {
	transform: translateX(6px);
}

.about-audience-grid {
	display: grid;
	gap: 14px;
	margin-top: clamp(44px, 7vw, 82px);
}

.about-audience-card {
	position: relative;
	display: flex;
	min-height: 430px;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
	padding: clamp(26px, 5vw, 54px);
	border: 1px solid rgba(16, 45, 76, .14);
	color: var(--about-navy);
	text-decoration: none;
}

.about-audience-card::before,
.about-audience-card::after {
	position: absolute;
	border: 1px solid currentColor;
	border-radius: 50%;
	content: "";
	opacity: .18;
	transition: transform .45s ease;
}

.about-audience-card::before {
	top: -120px;
	right: -90px;
	width: 300px;
	height: 300px;
}

.about-audience-card::after {
	top: -64px;
	right: -34px;
	width: 190px;
	height: 190px;
}

.about-audience-card--company {
	background: linear-gradient(145deg, #dff8f7 0%, #f5f6eb 68%, #fffdf8 100%);
}

.about-audience-card--production-company {
	color: #fff;
	background: linear-gradient(145deg, #173c63 0%, #102d4c 58%, #091d33 100%);
}

.about-audience-card:hover::before,
.about-audience-card:focus-visible::before {
	transform: translate(-16px, 16px) scale(.96);
}

.about-audience-card > * {
	position: relative;
	z-index: 1;
}

.about-audience-card > p:first-child {
	display: flex;
	gap: 12px;
	align-items: center;
	margin: 0 0 auto;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .1em;
}

.about-audience-card > p:first-child span {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border: 1px solid currentColor;
	border-radius: 50%;
	font-family: "Inter", sans-serif;
}

.about-audience-card h3 {
	max-width: 12em;
	margin: 42px 0 18px;
	color: inherit;
	font-family: "Shippori Mincho", serif;
	font-size: clamp(27px, 5vw, 43px);
	font-weight: 500;
	line-height: 1.45;
}

.about-audience-card > p:nth-of-type(2) {
	max-width: 580px;
	margin: 0;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.9;
}

.about-audience-card strong {
	display: flex;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
	padding-top: 18px;
	border-top: 1px solid currentColor;
	font-size: 13px;
}

.about-audience-card strong b {
	font-size: 18px;
	transition: transform .2s ease;
}

.about-audience-card:hover strong b,
.about-audience-card:focus-visible strong b {
	transform: translate(4px, -4px);
}

.about-standard__list {
	display: grid;
	margin: clamp(44px, 7vw, 82px) 0 0;
	padding: 0;
	border-top: 1px solid var(--about-line);
	list-style: none;
}

.about-standard__list li {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 15px;
	padding: 30px 0;
	border-bottom: 1px solid var(--about-line);
}

.about-standard__list li > span {
	padding-top: 5px;
	color: #80693a;
	font-family: "Inter", sans-serif;
	font-size: 11px;
	font-weight: 800;
}

.about-standard__list li div > p:first-child {
	margin: 0 0 7px;
	color: #80693a;
	font-family: "Inter", sans-serif;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .12em;
}

.about-standard__list h3 {
	margin: 0;
	color: var(--about-navy);
	font-family: "Shippori Mincho", serif;
	font-size: clamp(23px, 4vw, 34px);
	font-weight: 500;
	line-height: 1.5;
}

.about-standard__list li div > p:last-child {
	max-width: 690px;
	margin: 12px 0 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.9;
}

.about-service-list {
	display: grid;
	margin-top: clamp(44px, 7vw, 82px);
	border-top: 1px solid var(--about-line);
}

.about-service-list a {
	display: grid;
	grid-template-columns: 45px minmax(0, 1fr) 22px;
	gap: 14px;
	align-items: center;
	padding: 22px 0;
	border-bottom: 1px solid var(--about-line);
	color: var(--about-navy);
	text-decoration: none;
}

.about-service-list a > span {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	color: #80693a;
}

.about-service-list svg {
	width: 31px;
	height: 31px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
}

.about-service-list strong {
	font-family: "Shippori Mincho", serif;
	font-size: 20px;
	font-weight: 600;
}

.about-service-list small {
	display: none;
	font-size: 12px;
	font-weight: 650;
	line-height: 1.7;
}

.about-service-list b {
	font-size: 18px;
	transition: transform .2s ease;
}

.about-service-list a:hover b,
.about-service-list a:focus-visible b {
	transform: translateX(6px);
}

.about-profile__layout {
	display: grid;
	gap: clamp(44px, 8vw, 100px);
}

.about-profile__facts {
	margin: 0;
	border-top: 1px solid var(--about-line);
}

.about-profile__facts div {
	display: grid;
	gap: 7px;
	padding: 20px 0;
	border-bottom: 1px solid var(--about-line);
}

.about-profile__facts dt {
	color: #80693a;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
}

.about-profile__facts dd {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.8;
}

.about-profile__facts a {
	color: inherit;
	text-decoration-color: rgba(16, 45, 76, .38);
	text-decoration-thickness: 1px;
	text-underline-offset: .28em;
}

.about-profile__facts a:hover,
.about-profile__facts a:focus-visible {
	color: #075fc9;
	text-decoration-color: currentColor;
}

.about-direct {
	color: #fff;
	text-align: center;
	background: var(--about-navy) !important;
}

.about-direct .section__inner {
	display: flex;
	max-width: 960px;
	flex-direction: column;
	align-items: center;
}

.about-direct h2 {
	width: 100%;
}

.about-direct .about-kicker {
	color: var(--about-aqua);
}

.about-direct .section__inner > p:not(.about-kicker) {
	max-width: 670px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, .76);
}

.about-direct a {
	display: flex;
	gap: 34px;
	align-items: center;
	justify-content: center;
	width: min(100%, 480px);
	min-height: 68px;
	margin-top: 34px;
	padding: 16px 22px;
	border: 1px solid var(--about-aqua);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	transition: color .2s ease, background .2s ease;
}

.about-direct a:hover,
.about-direct a:focus-visible {
	color: var(--about-navy);
	background: var(--about-aqua);
}

@media (min-width: 48rem) {
	.about-page .section__inner {
		width: min(100% - 72px, 1220px);
	}

	.about-intro__layout {
		grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr);
		gap: clamp(50px, 8vw, 120px);
		align-items: end;
	}

	.about-continuum {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		border-bottom: 1px solid var(--about-line);
	}

	.about-continuum li {
		grid-template-columns: 28px 1fr;
		padding: 25px 22px;
		border-right: 1px solid var(--about-line);
		border-bottom: 0;
	}

	.about-continuum li:first-child {
		padding-left: 0;
	}

	.about-continuum li:last-child {
		padding-right: 0;
		border-right: 0;
	}

	.about-continuum small {
		grid-column: 2;
	}

	.about-map__row {
		grid-template-columns: 110px minmax(150px, .55fr) minmax(0, 1.5fr);
		gap: 28px;
		align-items: start;
	}

	.about-map__row > p {
		padding-top: 11px;
	}

	.about-map__row > p span {
		display: block;
		margin-bottom: 4px;
	}

	.about-audience-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-audience-card {
		min-height: 520px;
	}

	.about-standard__list li {
		grid-template-columns: 64px minmax(0, 1fr);
		padding: 38px 0;
	}

	.about-service-list a {
		grid-template-columns: 58px minmax(190px, .7fr) minmax(0, 1fr) 24px;
		gap: 24px;
		padding: 24px 0;
	}

	.about-service-list small {
		display: block;
	}

	.about-profile__facts div {
		grid-template-columns: 125px 1fr;
		gap: 24px;
	}
}

@media (min-width: 64rem) {
	.about-profile__layout {
		grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr);
		align-items: start;
	}

	.about-standard__list li {
		grid-template-columns: 76px minmax(0, 1fr);
	}

	.about-standard__list li div {
		display: grid;
		grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
		gap: 10px 64px;
		align-items: start;
	}

	.about-standard__list li div > p:first-child {
		grid-column: 1 / -1;
	}

	.about-standard__list li div > p:last-child {
		margin-top: 2px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.about-page *,
	.about-page *::before,
	.about-page *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}
