/* Coach@home v1.2 — mobile-first, palette logo */

:root {
	--orange: #ff9f00;
	--orange-deep: #e55602;
	--green: #31b20d;
	--green-soft: #3cc91a;
	--ink: #101010;
	--muted: #5a5a5a;
	--paper: #f7f8f6;
	--paper-2: #eef1ec;
	--white: #ffffff;
	--line: rgba(16, 16, 16, 0.1);
	--hero-scrim: linear-gradient(
		180deg,
		rgba(12, 28, 36, 0.08) 0%,
		rgba(12, 28, 36, 0.14) 50%,
		rgba(12, 28, 36, 0.42) 100%
	);
	--font-display: "Syne", system-ui, sans-serif;
	--font-body: "IBM Plex Sans", system-ui, sans-serif;
	--radius: 6px;
	--wrap: min(1180px, calc(100% - 1.5rem));
	--header-h: 5rem;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.05rem;
	line-height: 1.65;
	color: var(--ink);
	background:
		radial-gradient(900px 420px at 0% 0%, rgba(49, 178, 13, 0.1), transparent 55%),
		radial-gradient(800px 380px at 100% 8%, rgba(255, 159, 0, 0.12), transparent 50%),
		var(--paper);
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--green);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--orange-deep);
}

.screen-reader-text,
.skip-link {
	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 {
	position: fixed;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 1000;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0.75rem 1rem;
	clip: auto;
	overflow: visible;
	white-space: normal;
	background: var(--ink);
	color: #fff;
	border-radius: var(--radius);
}

.wrap {
	width: var(--wrap);
	margin-inline: auto;
}

/* Header */

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	height: var(--header-h);
	backdrop-filter: blur(16px);
	background: rgba(247, 248, 246, 0.88);
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
	border-bottom-color: var(--line);
	background: rgba(247, 248, 246, 0.96);
}

.site-header__inner {
	width: var(--wrap);
	margin-inline: auto;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
	margin-right: 0.5rem;
}

.site-brand__logo,
.site-brand .custom-logo {
	height: 3.4rem;
	width: auto;
	max-width: min(58vw, 14rem);
	object-fit: contain;
}

.nav-toggle {
	appearance: none;
	border: 0;
	background: transparent;
	width: 2.75rem;
	height: 2.75rem;
	display: grid;
	place-items: center;
	cursor: pointer;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
	content: "";
	display: block;
	width: 1.35rem;
	height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle__bars {
	position: relative;
}

.nav-toggle__bars::before {
	position: absolute;
	top: -6px;
}

.nav-toggle__bars::after {
	position: absolute;
	top: 6px;
}

.site-header.is-open .nav-toggle__bars {
	background: transparent;
}

.site-header.is-open .nav-toggle__bars::before {
	top: 0;
	transform: rotate(45deg);
}

.site-header.is-open .nav-toggle__bars::after {
	top: 0;
	transform: rotate(-45deg);
}

.site-nav {
	position: fixed;
	inset: var(--header-h) 0 auto 0;
	display: none;
	flex-direction: column;
	gap: 1.1rem;
	padding: 1.15rem 1rem 1.4rem;
	background: rgba(247, 248, 246, 0.98);
	border-bottom: 1px solid var(--line);
}

.site-header.is-open .site-nav {
	display: flex;
}

.nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.nav-list a {
	color: var(--ink);
	text-decoration: none;
	font-weight: 500;
	white-space: nowrap;
}

.nav-list a:hover {
	color: var(--green);
}

.site-nav__cta {
	align-self: flex-start;
}

.site-header__tools {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin-left: auto;
}

.lang-switcher {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-family: "Syne", sans-serif;
	font-weight: 700;
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	line-height: 1;
}

.lang-switcher__link {
	color: var(--muted, #5c635c);
	text-decoration: none;
	padding: 0.35rem 0.15rem;
	transition: color 0.2s ease;
}

.lang-switcher__link:hover {
	color: var(--green);
}

.lang-switcher__link.is-active {
	color: var(--orange-deep, #E55602);
}

.lang-switcher__sep {
	color: var(--line, #d5d8d2);
	user-select: none;
}

/* Buttons */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.9rem;
	padding: 0.7rem 1.2rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

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

.btn--accent {
	background: linear-gradient(180deg, var(--orange) 0%, var(--orange-deep) 100%);
	color: #fff;
	box-shadow: 0 10px 24px rgba(229, 86, 2, 0.25);
}

.btn--accent:hover {
	color: #fff;
	filter: brightness(1.05);
}

.btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.45);
}

.btn--ghost:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border-color: #fff;
}

.btn--line {
	background: transparent;
	color: var(--ink);
	border-color: var(--line);
}

.btn--line:hover {
	border-color: var(--green);
	color: var(--green);
}

/* Hero */

.hero {
	position: relative;
	isolation: isolate;
	min-height: calc(100svh - var(--header-h));
	display: grid;
	align-items: end;
	overflow: hidden;
	color: #fff;
}

.hero__media,
.hero__veil {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.hero__media img,
.hero-carousel__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero__veil {
	background: var(--hero-scrim);
}

.hero-carousel__viewport {
	position: absolute;
	inset: 0;
}

.hero-carousel__slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	transition: opacity 1s var(--ease);
}

.hero-carousel__slide.is-active {
	opacity: 1;
	z-index: 1;
}

.hero-carousel__dots {
	position: absolute;
	right: 1rem;
	bottom: 1.1rem;
	z-index: 2;
	display: flex;
	gap: 0.4rem;
}

.hero-carousel__dot {
	appearance: none;
	width: 0.55rem;
	height: 0.55rem;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	padding: 0;
}

.hero-carousel__dot.is-active {
	background: #fff;
	width: 1.4rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.hero__content {
	padding: 3.5rem 0 3rem;
	width: min(40rem, calc(100% - 1.5rem));
	margin-left: max(0.75rem, calc((100% - var(--wrap)) / 2));
	margin-right: auto;
}

.hero__logo {
	display: block;
	width: min(18rem, 78vw);
	height: auto;
	margin: 0 0 1.15rem;
	filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.55)) drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.hero__title {
	margin: 0 0 0.9rem;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(1.4rem, 4.6vw, 2rem);
	line-height: 1.18;
	letter-spacing: -0.02em;
	color: #fff;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero__lead {
	margin: 0 0 1.6rem;
	max-width: 32rem;
	color: rgba(255, 255, 255, 0.95);
	font-size: 1.05rem;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

/* Sections */

.section {
	padding: 4.25rem 0;
}

.section--page {
	padding-top: 2.75rem;
}

.section__head {
	margin-bottom: 2rem;
	max-width: 40rem;
}

.eyebrow {
	margin: 0 0 0.5rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--green);
}

.section__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.7rem, 4.4vw, 2.55rem);
	line-height: 1.1;
	letter-spacing: -0.03em;
}

.section__sub {
	margin: 0.85rem 0 0;
	color: var(--muted);
}

.section--audience {
	background: linear-gradient(180deg, var(--white), transparent 70%);
}

.section--offers {
	background: var(--paper-2);
}

.section--works {
	background: var(--ink);
	color: #f4f4f4;
}

.section--works .eyebrow {
	color: var(--orange);
}

.section--works .section__title {
	color: #fff;
}

.section--contact {
	padding-bottom: 5rem;
}

/* Audience + XP */

.audience-grid {
	display: grid;
	gap: 1rem;
	margin-bottom: 1.75rem;
}

.audience {
	padding: 1.35rem 1.25rem;
	border-top: 3px solid var(--orange);
	background: var(--white);
	border-radius: 0 0 var(--radius) var(--radius);
	box-shadow: 0 12px 30px rgba(16, 16, 16, 0.04);
}

.audience:nth-child(2) {
	border-top-color: var(--green);
}

.audience__kicker {
	margin: 0 0 0.35rem;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--muted);
	letter-spacing: 0.08em;
}

.audience__title {
	margin: 0 0 0.45rem;
	font-family: var(--font-display);
	font-size: 1.45rem;
	letter-spacing: -0.02em;
}

.audience__text {
	margin: 0;
	color: var(--muted);
}

.xp-row {
	display: grid;
	gap: 1rem;
}

.xp {
	padding: 1.1rem 0;
	border-top: 1px solid var(--line);
}

.xp__value {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(2.4rem, 8vw, 3.2rem);
	line-height: 1;
	letter-spacing: -0.04em;
	background: linear-gradient(120deg, var(--orange-deep), var(--orange) 45%, var(--green));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.xp__label {
	margin: 0.35rem 0 0.25rem;
	font-weight: 600;
	text-transform: lowercase;
}

.xp__text {
	margin: 0;
	color: var(--muted);
	font-size: 0.95rem;
}

/* Pillars */

.pillars {
	display: grid;
	gap: 2.4rem;
}

.pillar {
	display: grid;
	gap: 1rem;
}

.pillar__visual {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	aspect-ratio: 16 / 10;
	background: #d5dbd4;
}

.pillar__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--ease);
}

.pillar:hover .pillar__visual img {
	transform: scale(1.04);
}

.pillar__index {
	position: absolute;
	left: 0.85rem;
	bottom: 0.85rem;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.1rem;
	color: #fff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

/* Pillar carousel */

.pillar-carousel {
	display: grid;
	gap: 0.55rem;
}

.pillar-carousel__viewport {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	aspect-ratio: 16 / 10;
	background: #d5dbd4;
}

.pillar-carousel__slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	transition: opacity 0.45s var(--ease);
	pointer-events: none;
}

.pillar-carousel__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}

.pillar-carousel__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pillar-carousel__caption {
	position: absolute;
	left: 0.85rem;
	bottom: 0.85rem;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	background: rgba(10, 10, 10, 0.62);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 600;
}

.pillar-carousel__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.pillar-carousel__btn {
	appearance: none;
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: var(--white);
	color: var(--ink);
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
}

.pillar-carousel__btn:hover {
	border-color: var(--orange);
	color: var(--orange-deep);
}

.pillar-carousel__dots {
	display: flex;
	gap: 0.4rem;
	flex: 1;
	justify-content: center;
}

.pillar-carousel__dot {
	appearance: none;
	width: 0.55rem;
	height: 0.55rem;
	border: 0;
	border-radius: 999px;
	background: rgba(16, 16, 16, 0.2);
	cursor: pointer;
	padding: 0;
}

.pillar-carousel__dot.is-active {
	background: linear-gradient(90deg, var(--orange), var(--green));
	width: 1.35rem;
}

.pillar__title {
	margin: 0 0 0.4rem;
	font-family: var(--font-display);
	font-size: 1.5rem;
	letter-spacing: -0.02em;
}

.pillar__lead {
	margin: 0 0 0.85rem;
	color: var(--muted);
}

.pillar__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.4rem;
}

.pillar__list li {
	position: relative;
	padding-left: 1.05rem;
	font-weight: 500;
}

.pillar__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 0.42rem;
	height: 0.42rem;
	border-radius: 50%;
	background: var(--green);
}

.pillar__note {
	margin: 1.1rem 0 0;
	padding-top: 0.9rem;
	border-top: 1px solid var(--line);
	font-size: 0.95rem;
	color: var(--muted);
}

.pillar__note a {
	color: var(--ink);
	text-decoration: none;
	font-weight: 500;
}

.pillar__note a:hover {
	color: var(--green);
}

.section--partner {
	background: linear-gradient(135deg, rgba(255, 159, 0, 0.08), rgba(49, 178, 13, 0.1));
}

.partner {
	max-width: 46rem;
}

.partner__text {
	margin: 0.9rem 0 1.25rem;
	color: var(--muted);
	font-size: 1.05rem;
}

/* Gallery */

.gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.55rem;
}

.gallery--rich {
	grid-template-columns: 1fr 1fr;
}

.gallery__item {
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius);
	aspect-ratio: 4 / 3;
	background: #2a2a2a;
}

.gallery--rich .gallery__item:nth-child(1),
.gallery--rich .gallery__item:nth-child(6) {
	grid-column: 1 / -1;
	aspect-ratio: 16 / 10;
}

.gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
	filter: saturate(0.95);
}

.gallery__item:hover img {
	transform: scale(1.04);
	filter: saturate(1.08);
}

/* Salons IT expertise */

.section--salons {
	background:
		radial-gradient(ellipse 70% 50% at 10% 0%, rgba(255, 159, 0, 0.08), transparent 55%),
		linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}

.salon-brand {
	margin-top: 2rem;
}

.salon-brand + .salon-brand {
	margin-top: 2.75rem;
	padding-top: 2.25rem;
	border-top: 1px solid var(--line);
}

.salon-brand__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.85rem 1.25rem;
	margin-bottom: 1rem;
}

.salon-brand__logo {
	display: block;
	height: 2.75rem;
	width: auto;
	max-width: min(16rem, 78vw);
	object-fit: contain;
	object-position: left center;
}

.salon-brand__label {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--muted);
}

.gallery--salons {
	grid-template-columns: 1fr 1fr;
}

@media (min-width: 720px) {
	.gallery--salons {
		grid-template-columns: repeat(4, 1fr);
	}

	.gallery--salons .gallery__item:nth-child(1) {
		grid-column: span 2;
		aspect-ratio: 16 / 10;
	}
}

/* Skills / marquee */

.skills-block {
	margin-top: 1.75rem;
}

.skills-block + .skills-block {
	margin-top: 2.4rem;
}

.skills-block__head {
	margin-bottom: 0.9rem;
}

.skills-block__title {
	margin: 0 0 0.35rem;
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 3vw, 1.55rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--ink);
}

.skills-block__sub {
	margin: 0;
	max-width: 36rem;
	color: var(--muted);
	font-size: 0.98rem;
}

.logo-marquee {
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-marquee__track {
	display: flex;
	gap: 0.75rem;
	width: max-content;
	animation: marquee 38s linear infinite;
}

.logo-marquee--channels .logo-marquee__track {
	animation-duration: 32s;
}

.logo-marquee__item {
	margin: 0;
	display: grid;
	place-items: center;
	min-width: 11rem;
	min-height: 6.5rem;
	padding: 1rem 1.25rem;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.logo-marquee__item img {
	max-height: 4.25rem;
	max-width: 8.5rem;
	width: auto;
	height: auto;
	object-fit: contain;
	opacity: 1;
}

.logo-marquee__item--dark {
	background: #0d0d0d;
	border-color: rgba(255, 255, 255, 0.08);
}

.logo-marquee__item--channel {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 0.7rem;
	min-width: 12.5rem;
	min-height: 6.5rem;
	padding: 1rem 1.35rem;
}

.logo-marquee__item--channel img {
	width: 2.5rem;
	height: 2.5rem;
	max-height: none;
	max-width: none;
	flex-shrink: 0;
}

.logo-marquee__item--channel span {
	font-size: 1rem;
	font-weight: 600;
	color: var(--ink);
	white-space: nowrap;
}

@keyframes marquee {
	to {
		transform: translateX(-50%);
	}
}

/* Contact */

.contact__grid {
	display: grid;
	gap: 1.4rem;
}

.contact__name {
	margin: 0 0 0.2rem;
	font-family: var(--font-display);
	font-size: 1.55rem;
	letter-spacing: -0.02em;
}

.contact__role {
	margin: 0 0 0.85rem;
	color: var(--muted);
	font-size: 0.95rem;
}

.contact__phone {
	margin: 0 0 0.7rem;
	font-size: 1.4rem;
	font-weight: 600;
}

.contact__phone a {
	color: var(--ink);
	text-decoration: none;
}

.contact__phone a:hover {
	color: var(--orange-deep);
}

.contact__address {
	margin: 0 0 1.2rem;
	color: var(--muted);
	white-space: pre-line;
}

.contact__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.contact__map {
	overflow: hidden;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	min-height: 240px;
	background: #dfe4db;
}

.contact__map iframe {
	width: 100%;
	height: 260px;
	border: 0;
	display: block;
}

/* Footer */

.site-footer {
	border-top: 1px solid var(--line);
	padding: 1.8rem 0 2.3rem;
	background: var(--paper-2);
}

.site-footer__inner {
	width: var(--wrap);
	margin-inline: auto;
	display: grid;
	gap: 0.4rem;
}

.site-footer__brand {
	margin: 0 0 0.35rem;
}

.site-footer__logo {
	display: block;
	width: auto;
	height: 2.6rem;
}

.site-footer__nap {
	margin: 0;
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.55;
}

.site-footer__nap a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.site-footer__copy,
.site-footer__links {
	margin: 0;
	color: var(--muted);
	font-size: 0.92rem;
}

.site-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.site-footer__links a {
	color: var(--muted);
	text-decoration: none;
}

.site-footer__links a:hover {
	color: var(--green);
}

.page-content__title {
	margin: 0 0 1.2rem;
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	letter-spacing: -0.03em;
}

.prose > *:first-child {
	margin-top: 0;
}

.section--page {
	padding-top: calc(var(--header-h) + 2rem);
}

.page-content__title {
	margin: 0 0 1.2rem;
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	letter-spacing: -0.03em;
}

.legal {
	max-width: 46rem;
}

.legal__back {
	margin: 0 0 1.25rem;
	font-size: 0.92rem;
}

.legal__back a {
	color: var(--muted);
	text-decoration: none;
}

.legal__back a:hover {
	color: var(--green);
}

.legal-updated {
	color: var(--muted);
	font-size: 0.92rem;
}

.page-content__body.prose h3 {
	margin: 1.35rem 0 0.5rem;
	font-family: var(--font-display);
	font-size: 1.05rem;
}

.page-content__body.prose p,
.page-content__body.prose li {
	color: var(--muted);
	line-height: 1.7;
}

.page-content__body.prose a {
	color: var(--orange-deep);
}

.legal-table-wrap {
	overflow-x: auto;
	margin: 1rem 0 1.4rem;
}

.legal-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.92rem;
}

.legal-table th,
.legal-table td {
	border: 1px solid var(--line);
	padding: 0.65rem 0.75rem;
	text-align: left;
	vertical-align: top;
}

.legal-table th {
	background: var(--paper-2);
	color: var(--ink);
}

/* Reveal */

[data-reveal] {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
	transition-delay: var(--delay, 0ms);
}

[data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.logo-marquee__track,
	[data-reveal],
	.pillar__visual img,
	.gallery__item img,
	.btn,
	.pillar-carousel__slide {
		animation: none !important;
		transition: none !important;
		transform: none !important;
	}

	[data-reveal],
	.pillar-carousel__slide.is-active {
		opacity: 1 !important;
	}
}

@media (min-width: 720px) {
	:root {
		--wrap: min(1180px, calc(100% - 2.5rem));
		--header-h: 5.25rem;
	}

	.nav-toggle {
		display: none;
	}

	.site-header__inner {
		justify-content: flex-start;
	}

	.site-nav {
		position: static;
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 1rem;
		padding: 0;
		background: transparent;
		border: 0;
		margin-left: auto;
		order: 2;
	}

	.site-header__tools {
		order: 3;
		margin-left: 0.85rem;
	}

	.nav-list {
		flex-direction: row;
		align-items: center;
		flex-wrap: nowrap;
		gap: 0.85rem;
	}

	.nav-list a {
		font-size: 0.88rem;
	}

	.hero__content {
		padding: 5.5rem 0 4.4rem;
	}

	.hero__logo {
		width: min(22rem, 42vw);
	}

	.site-brand__logo,
	.site-brand .custom-logo {
		height: 3.85rem;
		max-width: 16rem;
	}

	.audience-grid {
		grid-template-columns: 1fr 1fr;
		gap: 1.15rem;
	}

	.xp-row {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.25rem;
	}

	.xp {
		border-top: 0;
		border-left: 1px solid var(--line);
		padding: 0.25rem 0 0.25rem 1.1rem;
	}

	.xp:first-child {
		border-left: 0;
		padding-left: 0;
	}

	.gallery,
	.gallery--rich {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0.75rem;
	}

	.gallery--rich .gallery__item:nth-child(1) {
		grid-column: span 2;
		grid-row: span 2;
		aspect-ratio: auto;
		min-height: 100%;
	}

	.gallery--rich .gallery__item:nth-child(6) {
		grid-column: span 1;
		aspect-ratio: 4 / 3;
	}

	.contact__grid {
		grid-template-columns: 1fr 1.15fr;
		gap: 2rem;
		align-items: start;
	}

	.contact__map iframe {
		height: 330px;
	}
}

@media (min-width: 980px) {
	.section {
		padding: 5.5rem 0;
	}

	.pillars {
		gap: 3.4rem;
	}

	.pillar {
		grid-template-columns: 1.12fr 1fr;
		gap: 2.4rem;
		align-items: center;
	}

	.pillar:nth-child(even) .pillar__visual {
		order: 2;
	}

	.pillar__title {
		font-size: 1.85rem;
	}
}
