/*
.raleway-<uniquifier> {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/
:root {
	--white: #fff;
	--black: #222;
	--gray: #eaeaea;
	--lt-gray: #f8f8f8;
	--steel: #3d4a5e;
	--lt-steel: #8a929d;
	--blue: #0455bf;
	--yellow: #dcb444;
	--green: #5e8508;
}

html {
	box-sizing: border-box;
	scroll-behavior: smooth;
}

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

body {
	position: relative;
	padding: 0;
	margin: 0;
	font-family: "Raleway", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 100%;
	line-height: 1.65;
	color: var(--black);
	background-color: var(--white);
	z-index: 0;
}

figure {
	margin: 0;
}

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

svg {
	display: block;
	width: 3rem;
	height: 3rem;
	fill: var(--steel);
	stroke: var(--steel);
}

h1,
h2,
h3,
h4 {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 3px;
	line-height: 1;
	color: var(--steel);
}

small {
	display: block;
	margin: 0 0 1rem;
}

a {
	display: inline-block;
	color: var(--blue);
	text-decoration-color: var(--blue);
	text-underline-offset: 5px;
	text-decoration-thickness: 2px;
	transition: text-decoration-color 300ms ease-in-out;
}

a:focus,
a:hover,
a:active {
	text-decoration-color: transparent;
}

a + svg {
	display: inline-block;
	vertical-align: middle;
	width: 1.333rem;
	height: 1.333rem;
	stroke: var(--blue);
	transform: translateX(0);
	transition: transform 300ms ease-in-out;
}

a:focus + svg,
a:hover + svg,
a:active + svg {
	transform: translateX(10px);
}

button {
	padding: 0;
	border: none;
	cursor: pointer;
	background-color: transparent;
}

.button {
	display: inline-block;
	padding: 1rem 1.75rem;
	background-color: var(--steel);
	border: 2px solid var(--steel);
	font-weight: 600;
	color: var(--white);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 300ms ease-in-out;
}

.button:focus,
.button:hover,
.button:active {
	background-color: transparent;
	color: var(--steel);
}

.button.hollow {
	background-color: transparent;
	color: var(--steel);
}

.button.hollow:focus,
.button.hollow:hover,
.button.hollow:active {
	background-color: var(--steel);
	color: var(--white);
}

.access-hidden {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.center {
	text-align: center;
}

.green {
	color: var(--green);
	font-weight: 600;
}

.wrap {
	width: 78.125rem;
	max-width: calc(100% - 2rem);
	margin: 0 auto;
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 1rem 4rem;
	background-color: rgba(255, 255, 255, 85%);
	box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 10%);
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	z-index: 2;
}

.primary_logo {
	margin: 0;
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	text-transform: uppercase;
	letter-spacing: 3px;
	line-height: 1;
	color: var(--steel);
}

.main_nav,
.social_nav {
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	gap: 2rem;
}

@media (max-width: 1300px) {
	.header {
		position: sticky;
		padding: 0.5rem 1rem;
	}

	.main_nav {
		gap: 1rem;
	}
}

/* Social Icons */
.social_nav {
	gap: 1rem;
}

.social_item a {
	display: block;
	padding: 0.875rem;
	border-radius: 5px;
	background-color: transparent;
	transition: background-color 300ms ease-in-out;
}

.social_item a:focus,
.social_item a:hover,
.social_item a:active {
	background-color: var(--steel);
}

.social_item svg {
	width: 1.25rem;
	height: 1.25rem;
	fill: var(--steel);
	stroke: var(--steel);
	transition: all 300ms ease-in-out;
}

.social_item a:focus svg,
.social_item a:hover svg,
.social_item a:active svg {
	fill: var(--white);
	stroke: var(--white);
}

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

/* Navigation */
.nav_item a {
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--steel);
	text-decoration-color: transparent;
}

.nav_item a.active,
.nav_item a:focus,
.nav_item a:hover,
.nav_item a:active {
	text-decoration-color: var(--steel);
}

.menu_button {
	display: none;
}

@media (max-width: 1024px) {
	.menu_button {
		display: block;
		cursor: pointer;
		border-radius: 5px;
		background-color: transparent;
		transition: background-color 300ms ease-in-out;
	}

	.menu_button:focus,
	.menu_button:hover,
	.menu_button:active {
		background-color: var(--steel);
	}

	.menu_button svg {
		stroke: var(--steel);
		transition: stroke 300ms ease-in-out;
	}

	.menu_button:focus svg,
	.menu_button:hover svg,
	.menu_button:active svg {
		stroke: var(--white);
	}

	.close_button {
		margin: 0.5rem;
	}

	.navigation {
		visibility: hidden;
		position: fixed;
		top: 0;
		right: -300px;
		width: 300px;
		max-width: 100%;
		height: 100dvh;
		transform: translateX(0);
		background-color: var(--white);
		box-shadow: none;
		z-index: 3;
		transition: all 300ms ease-in-out;
	}

	.main_nav {
		flex-direction: column;
		gap: 0;
		margin: 0.5rem 0 0;
		border-top: 1px solid var(--gray);
	}

	.main_nav li {
		width: 100%;
		text-align: center;
		margin: 0 0 0.25rem;
		border-bottom: 1px solid var(--gray);
	}

	.main_nav a {
		display: block;
		padding: 1rem;
	}

	.menu_active .open_button {
		visibility: hidden;
	}

	.menu_active .navigation {
		box-shadow: -1px 0 1px 1px rgba(0, 0, 0, 10%);
		visibility: visible;
		transform: translateX(-300px);
	}
}

/* Hero Section */
.hero {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 1;
	z-index: 0;
}

.hero .figure {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

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

.hero_wrap {
	position: relative;
	width: 768px;
	max-width: 100%;
	text-align: center;
	padding: 4rem;
	margin: 1rem;
	background-color: rgba(255, 255, 255, 75%);
}

.hero_wrap::before {
	content: "";
	display: block;
	width: calc(100% - 4rem);
	height: calc(100% - 4rem);
	position: absolute;
	top: 2rem;
	left: 2rem;
	border: 3px dotted var(--lt-steel);
	pointer-events: none;
}

.hero_title {
	font-size: clamp(1.5rem, 7vw, 6rem);
	margin: 0;
	color: var(--steel);
}

.hero_wrap p:first-of-type {
	margin: 1rem 0 2rem;
}

@media (max-width: 600px) {
	.hero_wrap {
		padding: 2rem;
	}

	.hero_wrap::before {
		width: calc(100% - 2rem);
		height: calc(100% - 2rem);
		top: 1rem;
		left: 1rem;
	}
}

/* Section Grid */
.section_grid {
	padding: 4rem 0;
}

.section_grid .wrap {
	display: grid;
	align-items: center;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.image_wrap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-areas:
		"first first"
		"second third";
}

.image_wrap .figure {
	width: 100%;
	height: auto;
}

.image_wrap .figure:nth-of-type(1) {
	max-width: 65%;
	margin: 0 auto 1vw;
	grid-area: first;
	transform: translateX(5%);
}

.image_wrap .figure:nth-of-type(2) {
	max-width: calc(100% - 0.5vw);
	grid-area: second;
	transform: translateY(-40%);
}

.image_wrap .figure:nth-of-type(3) {
	max-width: calc(100% - 0.5vw);
	grid-area: third;
	transform: translateX(0.5vw);
}

.image_wrap img {
	width: 100%;
	aspect-ratio: 1.37 / 1;
	object-fit: cover;
}

@media (max-width: 960px) {
	.section_grid {
		padding: 1rem 0;
	}

	.section_grid .wrap {
		grid-template-columns: 1fr;
	}
}

/* Full Width Cards */
.full_width-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.full_width-cards .card {
	padding: 4rem;
	text-align: center;
	background-color: var(--gray);
	color: var(--black);
}

.full_width-cards .card:nth-of-type(2) .tertiary_heading {
	color: var(--lt-gray);
}

.full_width-cards .card:nth-of-type(2) {
	position: relative;
	background-color: var(--steel);
	color: var(--lt-gray);
}

.full_width-cards .card:nth-of-type(2)::before {
	content: "";
	display: block;
	width: calc(100% - 4rem);
	height: calc(100% - 4rem);
	position: absolute;
	top: 2rem;
	left: 2rem;
	border: 3px dotted var(--lt-steel);
	pointer-events: none;
}

@media (max-width: 1024px) {
	.full_width-cards {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.full_width-cards .card {
		padding: 2rem;
	}

	.full_width-cards .card:nth-of-type(2)::before {
		width: calc(100% - 2rem);
		height: calc(100% - 2rem);
		top: 1rem;
		left: 1rem;
	}
}

/* Section Grid Icons */
.section_grid-icons {
	padding: 4rem 0;
	background-color: var(--lt-gray);
}

.section_grid-icons .wrap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.section_grid-icons .item:nth-of-type(1) svg {
	stroke: var(--yellow);
}

.section_grid-icons .item:nth-of-type(2) svg {
	stroke: var(--green);
}

.section_grid-icons .item:nth-of-type(3) svg {
	fill: var(--blue);
}

.section_grid-icons .item:nth-of-type(4) svg {
	stroke: var(--lt-steel);
	transform: rotate(-90deg);
}

@media (max-width: 768px) {
	.section_grid-icons {
		padding: 2rem 0;
	}

	.section_grid-icons .wrap {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}

/* Masonry */
.masonry {
	padding: 4rem 0;
}

.masonry .wrap {
	text-align: center;
}

.masonry p {
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 3rem 0;
}

.masonry .grid {
	columns: 3 auto;
	gap: 1rem;
}

.masonry .figure {
	break-inside: avoid;
	padding: 0 0 1rem;
}

@media (max-width: 768px) {
	.masonry {
		padding: 2rem 0;
	}

	.masonry .grid {
		columns: 2 auto;
		gap: 0.5rem;
	}

	.masonry .figure {
		padding: 0 0 0.5rem;
	}
}

/* Full Width Text */
.full_width-text {
	position: relative;
	padding: 4rem;
	text-align: center;
	background-color: var(--lt-gray);
}

.full_width-text::before {
	content: "";
	display: block;
	width: calc(100% - 4rem);
	height: calc(100% - 4rem);
	position: absolute;
	top: 2rem;
	left: 2rem;
	border: 3px dotted var(--yellow);
	pointer-events: none;
}

.full_width-text .secondary_heading {
	font-size: clamp(1.25rem, 2.5vw, 2.5rem);
}

@media (max-width: 768px) {
	.full_width-text {
		padding: 2rem;
	}

	.full_width-text::before {
		width: calc(100% - 2rem);
		height: calc(100% - 2rem);
		top: 1rem;
		left: 1rem;
	}
}

/* Section Grid Posts */
.section_grid-posts {
	padding: 4rem 0;
}

.section_grid-posts .secondary_heading {
	text-align: center;
	margin: 1rem 0 3rem;
}

.section_grid-posts .wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.section_grid-posts .figure {
	width: 100%;
	height: auto;
	aspect-ratio: 1.59 / 1;
	box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 10%);
}

.section_grid-posts img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center -1px;
}

.section_grid-posts .category,
.section_grid-posts .tertiary_heading {
	text-align: center;
}

.section_grid-posts .category {
	margin: 2.5rem 0 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

.section_grid-posts .category::after {
	content: "";
	display: block;
	width: 65px;
	height: 0;
	margin: 0.5rem auto 1.5rem;
	border-bottom: 3px solid var(--yellow);
}

@media (max-width: 960px) {
	.section_grid-posts {
		padding: 2rem 0;
	}

	.section_grid-posts .secondary_heading {
		margin: 1rem 0 2rem;
	}

	.section_grid-posts .wrap {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}

/* Form Section */
.section_content-form {
	padding: 0 0 8rem;
}

.section_content-form .wrap {
	width: 107rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.bg_image-wrap {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 0;
}

.bg_image-wrap .figure {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.bg_image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bg_image-wrap .content_wrap {
	position: relative;
	text-align: center;
	padding: 4rem;
	background-color: rgba(255, 255, 255, 65%);
}

.bg_image-wrap .content_wrap::before {
	content: "";
	display: block;
	position: absolute;
	width: calc(100% - 2rem);
	height: calc(100% - 2rem);
	top: 1rem;
	left: 1rem;
	border: 3px dotted var(--lt-steel);
}

/* Form Container */
.form {
	padding: 4rem;
	background-color: var(--lt-gray);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	display: block;
	padding: 1rem;
	margin: 0 0 1.5rem;
	width: 100%;
	border: 2px solid var(--gray);
}

input[required]::placeholder,
textarea[required]::placeholder {
	color: var(--green);
	font-weight: 600;
}

@media (max-width: 1024px) {
	.section_content-form {
		padding: 0 0 4rem;
	}

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

	.bg_image-wrap .content_wrap {
		margin: 3rem;
		padding: 3rem;
	}

	.form {
		padding: 1.5rem;
	}

	input[type="text"],
	input[type="email"],
	input[type="tel"],
	textarea {
		margin: 0 0 1rem;
	}
}

/* Footer */
.footer a {
	text-decoration-color: transparent;
}

.footer a:focus,
.footer a:hover,
.footer a:active {
	text-decoration-color: var(--blue);
}

.footer .primary_logo {
	margin: 0 0 1.5rem;
}

.footer .tertiary_heading {
	font-size: 1.1rem;
	font-weight: 400;
	margin: 0 0 1.5rem;
}

.top_wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.top_wrap p {
	margin: 0.333rem 0 0;
}

.top_wrap ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.top_wrap li a {
	padding: 0.333rem 0;
}

.insta_wrap {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.5rem;
}

.insta_wrap .figure {
	width: 100%;
	height: auto;
	aspect-ratio: 1;
}

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

.bottom_wrap {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
	margin: 3rem 0 0;
	border-top: 1px solid var(--gray);
}

.bottom_wrap p {
	text-transform: uppercase;
	letter-spacing: 1px;
}

@media (max-width: 960px) {
	.footer .social_nav {
		gap: 0.5rem;
	}

	.top_wrap {
		grid-template-columns: 1fr;
	}

	.bottom_wrap {
		flex-direction: column;
	}

	.bottom_wrap span::after {
		content: "\A";
		white-space: pre;
	}
}
