/* ==========================================================================
   Reset
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #ffffff;
	color: #1c1c1c;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

/* ==========================================================================
   Global Layout
   ========================================================================== */

.container {
	width: min(100% - 40px, 1280px);
	margin-inline: auto;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
	position: relative;
	z-index: 100;
	width: 100%;
	background: #ffffff;
}

.site-header__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(100% - 40px, 1280px);
	min-height: 90px;
	margin-inline: auto;
}

.site-header__branding {
	flex-shrink: 0;
}

.custom-logo {
	width: auto;
	max-height: 60px;
}

.site-navigation__menu {
	display: flex;
	align-items: center;
	gap: 32px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-navigation__menu a {
	transition:
		color 0.25s ease,
		opacity 0.25s ease;
}

.site-navigation__menu a:hover {
	opacity: 0.65;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.home-hero {
	display: flex;
	align-items: center;
	min-height: 600px;
	padding-block: 100px;
}

.home-hero__content {
	max-width: 800px;
}

.home-hero__title {
	margin: 0 0 24px;
	font-size: clamp(42px, 6vw, 80px);
	line-height: 1.05;
}

.home-hero__description {
	max-width: 650px;
	margin: 0;
	font-size: 20px;
}

/* ==========================================================================
   Content
   ========================================================================== */

.home-content,
.page-content,
.single-post,
.blog-listing {
	padding-block: 80px;
}

.page-title,
.single-post__title {
	margin-top: 0;
	font-size: clamp(36px, 5vw, 64px);
	line-height: 1.1;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
	padding-block: 50px;
	background: #111111;
	color: #ffffff;
}

.site-footer__container {
	width: min(100% - 40px, 1280px);
	margin-inline: auto;
}

.site-footer__menu {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 991px) {

	.site-header__container {
		min-height: 74px;
	}

	.site-navigation__menu {
		gap: 20px;
	}

	.home-hero {
		min-height: 500px;
		padding-block: 80px;
	}
}

@media (max-width: 767px) {

	.container,
	.site-header__container,
	.site-footer__container {
		width: min(100% - 30px, 1280px);
	}

	.site-navigation {
		display: none;
	}

	.home-hero {
		min-height: auto;
		padding-block: 70px;
	}

	.home-content,
	.page-content,
	.single-post,
	.blog-listing {
		padding-block: 60px;
	}
}