@font-face {
	font-family: 'ACP Remix';
	src:
		url('fonts/ACPRemix-Regular.woff2') format('woff2'),
		url('fonts/ACPRemix-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'ABC Walter Neue';
	src: url('fonts/ABCWalterNeue-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

/* Figma frame sizes include padding and border, so every measurement taken
 * off the design maps 1:1 only under border-box. */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	/* ACP palette (Figma: "ACP Off-White") */
	--acp-plum: #29191e;
	--acp-off-white: #f3eeea;

	--font-display: 'ACP Remix', georgia, serif;
	--font-body: 'ABC Walter Neue', helvetica, arial, sans-serif;

	--ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
	color-scheme: dark;
	background-color: var(--acp-plum);
}

body {
	font-family: var(--font-body);
	font-feature-settings:
		'dlig' 1,
		'lnum' 1,
		'tnum' 1;
	background-color: var(--acp-plum);
	color: var(--acp-off-white);
}

@keyframes rise-in {
	from {
		opacity: 0;
		translate: 0 16px;
		filter: blur(5px);
	}

	to {
		opacity: 1;
		translate: 0 0;
		filter: blur(0);
	}
}

.holding {
	position: relative;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
}

.headline {
	font-family: var(--font-display);
	font-weight: 400;
	/* 25.83px on the 345px mobile frame, 60.28px on the 1240px desktop frame */
	font-size: clamp(25.83px, 4.861vw, 60.28px);
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	/* Trailing letter-space would nudge the centred line left; cancel it. */
	margin-right: -0.1em;
	text-align: center;
	text-box: trim-both cap alphabetic;
	animation: rise-in 1.3s var(--ease-out-soft) 0.2s both;
}

/* The design tightens the tracking between the two Os of "soon". */
.kern-oo {
	letter-spacing: 0.021em;
}

.contact {
	position: absolute;
	left: 30px;
	right: 30px;
	bottom: 24px;
	font-size: 12.05px;
	line-height: 1.15;

	/* Mobile: label in the first column, both entries stacked in the second. */
	display: grid;
	grid-template-columns: 37% 1fr;
	row-gap: 12px;
	align-items: start;
}

.contact-label {
	grid-column: 1;
	grid-row: 1;
}

/* Footer follows the headline in, one item after the next. */
.contact-label,
.entry {
	animation: rise-in 1s var(--ease-out-soft) both;
}

.contact-label {
	animation-delay: 0.9s;
}

.entry-one {
	animation-delay: 1.05s;
}

.entry-two {
	animation-delay: 1.2s;
}

.entry {
	grid-column: 2;
	display: grid;
	grid-template-columns: 28px 1fr;
}

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

@media (min-width: 768px) {
	.holding {
		padding: 34px;
	}

	/* Desktop: one row — label left, entry I at half width, entry II at
	 * three-quarters, matching the Figma column rhythm. */
	.contact {
		left: 34px;
		right: 34px;
		bottom: 28px;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		row-gap: 0;
	}

	.contact-label {
		grid-column: 1 / span 2;
	}

	.entry {
		grid-template-columns: 30px 1fr;
	}

	.entry-one {
		grid-column: 3;
		grid-row: 1;
		margin-left: 17px;
	}

	.entry-two {
		grid-column: 4;
		grid-row: 1;
		margin-left: 26px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.headline,
	.contact-label,
	.entry {
		animation: none;
	}
}
