@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../assets/fonts/poppins-regular.woff2") format("woff2");
}

@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../assets/fonts/poppins-semibold.woff2") format("woff2");
}

@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../assets/fonts/poppins-bold.woff2") format("woff2");
}

@font-face {
	font-family: "Oswald";
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("../assets/fonts/oswald.woff2") format("woff2");
}

:root {
	--spruce: #405954;
	--spruce-deep: #263d39;
	--sage: #94c4b0;
	--sun: #ffc703;
	--tangerine: #ff8a03;
	--flame: #ff4a00;
	--reef: #ed1f36;
	--shell: #fdfbf5;
	--mist: #eef4f1;
	--white: #fff;
	--container: 1180px;
	--radius: 22px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--shell);
	color: var(--spruce);
	font-family: "Poppins", Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
}

body,
button,
input {
	font-size: 16px;
}

img,
svg {
	display: block;
}

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

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

p,
h1,
h2,
h3 {
	margin: 0;
}

.container,
.header-inner,
.hero-inner {
	width: min(calc(100% - 40px), var(--container));
	margin-inline: auto;
}

.skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 100;
	padding: 10px 16px;
	border-radius: 999px;
	background: var(--sun);
	color: var(--spruce-deep);
	font-size: 0.85rem;
	font-weight: 700;
	transform: translateY(-150%);
	transition: transform 160ms ease;
}

.skip-link:focus {
	transform: translateY(0);
}

:focus-visible {
	outline: 3px solid var(--sun);
	outline-offset: 4px;
}

.site-header {
	position: relative;
	z-index: 20;
	background: var(--spruce);
	color: var(--shell);
}

.header-inner {
	display: flex;
	min-height: 82px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 16px;
}

.site-brand img {
	width: 123px;
	height: 46px;
	object-fit: contain;
}

.site-brand span {
	width: 1px;
	height: 28px;
	background: rgba(253, 251, 245, 0.36);
}

.site-brand strong {
	font-family: "Oswald", Arial, sans-serif;
	font-size: 1.15rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	line-height: 1;
	text-transform: uppercase;
}

.header-note {
	color: rgba(253, 251, 245, 0.68);
	font-family: "Oswald", Arial, sans-serif;
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.colour-bars {
	display: grid;
	width: 100%;
}

.colour-bars i {
	display: block;
	height: 5px;
}

.colour-bars i:nth-child(1) {
	background: var(--sun);
}

.colour-bars i:nth-child(2) {
	background: var(--tangerine);
}

.colour-bars i:nth-child(3) {
	background: var(--flame);
}

.colour-bars i:nth-child(4) {
	background: var(--reef);
}

.hero {
	position: relative;
	min-height: min(790px, calc(100svh - 102px));
	overflow: hidden;
	background: #179ca2;
	color: var(--shell);
}

.hero-media,
.hero-media img,
.hero-shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero-media img {
	object-fit: cover;
	object-position: 50% 50%;
}

.hero-shade {
	background:
		linear-gradient(90deg, rgba(26, 54, 51, 0.02) 10%, rgba(26, 54, 51, 0.22) 46%, rgba(31, 61, 57, 0.84) 100%),
		linear-gradient(0deg, rgba(21, 48, 45, 0.34) 0%, transparent 32%);
}

.hero-inner {
	position: relative;
	z-index: 2;
	display: flex;
	min-height: inherit;
	align-items: center;
	justify-content: flex-end;
	padding-block: 90px 120px;
}

.hero-copy {
	width: min(100%, 560px);
}

.pill {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 7px 15px 6px;
	border-radius: 999px;
	background: var(--sun);
	color: var(--spruce-deep);
	font-family: "Oswald", Arial, sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.19em;
	line-height: 1;
	text-transform: uppercase;
}

.hero h1 {
	margin-top: 24px;
	font-size: clamp(3rem, 6vw, 5.8rem);
	font-weight: 600;
	letter-spacing: -0.05em;
	line-height: 0.98;
}

.hero-copy > p:last-child {
	max-width: 525px;
	margin-top: 24px;
	color: rgba(253, 251, 245, 0.86);
	font-size: clamp(1rem, 1.4vw, 1.18rem);
	line-height: 1.72;
}

.hero-index {
	position: absolute;
	right: max(20px, calc((100vw - var(--container)) / 2));
	bottom: 28px;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 12px;
	color: rgba(253, 251, 245, 0.7);
	font-family: "Oswald", Arial, sans-serif;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}

.hero-index b {
	width: 38px;
	height: 1px;
	background: rgba(253, 251, 245, 0.5);
}

.parks-section {
	padding: 108px 0 120px;
	background: var(--shell);
}

.section-intro {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
	align-items: end;
	gap: 70px;
	margin-bottom: 54px;
}

.eyebrow {
	color: var(--flame);
	font-family: "Oswald", Arial, sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.section-intro h2,
.technology-copy h2 {
	margin-top: 12px;
	font-family: "Oswald", Arial, sans-serif;
	font-size: clamp(2.6rem, 5vw, 4.8rem);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.03;
	text-transform: uppercase;
}

.section-intro > p {
	padding-bottom: 4px;
	color: rgba(64, 89, 84, 0.74);
	font-size: 1.02rem;
	line-height: 1.75;
}

.park-card {
	display: grid;
	grid-template-columns: minmax(0, 1.38fr) minmax(360px, 0.82fr);
	min-height: 540px;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--spruce);
	box-shadow: 0 28px 80px rgba(45, 68, 63, 0.16);
}

.park-card-media {
	position: relative;
	min-height: 460px;
	overflow: hidden;
}

.park-card-media > img:first-child,
.park-card-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.park-card-media > img:first-child {
	object-fit: cover;
	object-position: 24% center;
	transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.park-card:hover .park-card-media > img:first-child {
	transform: scale(1.025);
}

.park-card-overlay {
	background: linear-gradient(0deg, rgba(30, 57, 53, 0.72), transparent 58%);
}

.east-point-logo {
	position: absolute;
	left: 40px;
	bottom: 38px;
	width: min(69%, 440px);
	height: auto;
}

.park-card-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(40px, 6vw, 74px);
	color: var(--shell);
}

.location {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--sage);
	font-family: "Oswald", Arial, sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	line-height: 1.4;
	text-transform: uppercase;
}

.location svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.park-card-copy h3 {
	margin-top: 18px;
	font-family: "Oswald", Arial, sans-serif;
	font-size: clamp(2.15rem, 4vw, 3.45rem);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.04;
	text-transform: uppercase;
}

.park-card-copy > p:not(.location) {
	margin-top: 22px;
	color: rgba(253, 251, 245, 0.76);
	font-size: 0.98rem;
	line-height: 1.72;
}

.button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 32px;
	padding: 14px 22px;
	border: 2px solid transparent;
	border-radius: 999px;
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1.15;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	transition: transform 180ms ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button:hover svg {
	transform: translateX(3px);
}

.button-sun {
	background: var(--sun);
	color: var(--spruce-deep);
}

.button-sun:hover {
	background: #ffd22f;
}

.technology-section {
	position: relative;
	min-height: 600px;
	overflow: hidden;
	background: var(--spruce-deep);
	color: var(--shell);
}

.technology-section::before {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 74% 30%, rgba(148, 196, 176, 0.18), transparent 28%),
		linear-gradient(105deg, rgba(64, 89, 84, 0.32), transparent 58%);
	content: "";
}

.technology-inner {
	position: relative;
	z-index: 2;
	display: flex;
	min-height: 600px;
	align-items: center;
	padding-block: 90px;
}

.technology-copy {
	max-width: 680px;
}

.eyebrow-light {
	color: var(--sage);
}

.technology-copy h2 {
	max-width: 650px;
}

.technology-copy > p:not(.eyebrow) {
	max-width: 540px;
	margin-top: 24px;
	color: rgba(253, 251, 245, 0.73);
	font-size: 1.04rem;
	line-height: 1.75;
}

.button-outline {
	border-color: rgba(253, 251, 245, 0.74);
	color: var(--shell);
}

.button-outline:hover {
	border-color: var(--sun);
	background: var(--sun);
	color: var(--spruce-deep);
}

.sunset {
	position: absolute;
	right: -95px;
	bottom: -8px;
	width: min(53vw, 720px);
	opacity: 0.82;
}

.sunset svg {
	width: 100%;
	height: auto;
}

.site-footer {
	background: var(--spruce);
	color: var(--shell);
}

.not-found-page {
	display: flex;
	min-height: 100svh;
	flex-direction: column;
	background: var(--spruce-deep);
	color: var(--shell);
}

.not-found {
	position: relative;
	display: flex;
	width: min(calc(100% - 40px), 700px);
	min-height: calc(100svh - 20px);
	align-items: center;
	align-self: center;
	justify-content: center;
	flex: 1;
	flex-direction: column;
	overflow: hidden;
	padding: 70px 20px;
	text-align: center;
}

.not-found > *:not(.not-found-sun) {
	position: relative;
	z-index: 1;
}

.not-found h1 {
	margin-top: 22px;
	font-family: "Oswald", Arial, sans-serif;
	font-size: clamp(3.5rem, 11vw, 7rem);
	font-weight: 600;
	letter-spacing: -0.045em;
	line-height: 0.98;
	text-transform: uppercase;
}

.not-found > p:not(.pill):not(.molten-hosting) {
	margin-top: 22px;
	color: rgba(253, 251, 245, 0.72);
	font-size: 1.05rem;
}

.not-found .button {
	width: auto;
}

.not-found-sun {
	position: absolute;
	right: 4%;
	bottom: 13%;
	width: 230px;
	height: 230px;
	border-radius: 50%;
	background: var(--sun);
	opacity: 0.07;
}

.footer-inner {
	display: grid;
	grid-template-columns: 1fr auto auto;
	align-items: center;
	gap: 34px;
	min-height: 142px;
	padding-block: 30px;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 13px;
}

.footer-brand img {
	width: 102px;
	height: 42px;
	object-fit: contain;
}

.footer-brand span {
	padding-left: 13px;
	border-left: 1px solid rgba(253, 251, 245, 0.3);
	font-family: "Oswald", Arial, sans-serif;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.footer-inner > p {
	color: rgba(253, 251, 245, 0.58);
	font-size: 0.75rem;
}

.molten-hosting {
	display: block;
	margin-top: 7px;
	color: rgba(253, 251, 245, 0.5);
	font-size: 0.6875rem;
	letter-spacing: 0.04em;
	line-height: 1.5;
}

.molten-hosting a {
	color: var(--sage);
	text-decoration: underline;
	text-decoration-color: rgba(148, 196, 176, 0.45);
	text-underline-offset: 0.2em;
}

.molten-hosting a:hover {
	color: var(--sun);
}

.not-found .molten-hosting--404 {
	margin-top: 28px;
	color: rgba(253, 251, 245, 0.68);
	font-size: 0.9rem;
}

@media (max-width: 960px) {
	.section-intro {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.section-intro > p {
		max-width: 650px;
	}

	.park-card {
		grid-template-columns: 1fr;
	}

	.park-card-media {
		min-height: 500px;
	}

	.park-card-copy {
		padding: 48px;
	}

	.sunset {
		right: -130px;
		width: 670px;
		opacity: 0.42;
	}

	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}

	.footer-inner > p:last-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 767px) {
	.container,
	.header-inner,
	.hero-inner {
		width: min(calc(100% - 32px), var(--container));
	}

	.header-inner {
		min-height: 72px;
	}

	.site-brand {
		gap: 11px;
	}

	.site-brand img {
		width: 100px;
		height: 38px;
	}

	.site-brand span {
		height: 23px;
	}

	.site-brand strong {
		font-size: 0.95rem;
	}

	.header-note {
		display: none;
	}

	.colour-bars i {
		height: 4px;
	}

	.hero {
		min-height: max(700px, calc(100svh - 88px));
	}

	.hero-media img {
		object-position: center;
	}

	.hero-shade {
		background: linear-gradient(180deg, rgba(25, 61, 59, 0.04) 22%, rgba(28, 61, 58, 0.3) 52%, rgba(30, 59, 55, 0.94) 100%);
	}

	.hero-inner {
		align-items: flex-end;
		padding-block: 340px 96px;
	}

	.hero h1 {
		font-size: clamp(2.9rem, 14vw, 4.25rem);
	}

	.hero-copy > p:last-child {
		margin-top: 18px;
		font-size: 0.98rem;
		line-height: 1.62;
	}

	.hero-index {
		right: 16px;
		bottom: 22px;
	}

	.parks-section {
		padding: 76px 0 84px;
	}

	.section-intro {
		margin-bottom: 34px;
	}

	.section-intro h2,
	.technology-copy h2 {
		font-size: clamp(2.35rem, 12vw, 3.4rem);
	}

	.section-intro > p {
		font-size: 0.95rem;
		line-height: 1.68;
	}

	.park-card {
		min-height: 0;
		border-radius: 18px;
	}

	.park-card-media {
		min-height: 340px;
	}

	.park-card-media > img:first-child {
		object-position: 27% center;
	}

	.east-point-logo {
		left: 24px;
		bottom: 24px;
		width: calc(100% - 48px);
	}

	.park-card-copy {
		padding: 34px 24px 38px;
	}

	.park-card-copy h3 {
		font-size: 2.45rem;
	}

	.park-card-copy > p:not(.location) {
		font-size: 0.93rem;
	}

	.button {
		width: 100%;
		margin-top: 28px;
		padding-inline: 18px;
	}

	.technology-section,
	.technology-inner {
		min-height: 620px;
	}

	.technology-inner {
		align-items: flex-start;
		padding-block: 82px 230px;
	}

	.technology-copy > p:not(.eyebrow) {
		font-size: 0.96rem;
	}

	.sunset {
		right: -84px;
		width: 470px;
		opacity: 0.72;
	}

	.footer-inner {
		display: flex;
		min-height: 0;
		align-items: flex-start;
		flex-direction: column;
		gap: 15px;
		padding-block: 38px;
	}

	.not-found .button {
		width: auto;
	}
}

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

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
