/* =========================
   RESET / BASE
========================= */
* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #5C5045;
	background: #F5F1EB;
}

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

a {
	color: #5C5045;
	text-decoration: none;
	transition: color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

a:hover {
	color: #8A9A86;
	text-decoration: underline;
}

h1,
h2,
h3 {
	margin-top: 0;
	line-height: 1.2;
	color: #5C5045;
}

p {
	margin-top: 0;
	margin-bottom: 18px;
	color: #6B6055;
}

/* =========================
   TOP BAR
========================= */
.top-bar {
	background: #EAE4DB;
	color: #5C5045;
	text-align: center;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 700;
	border-bottom: 1px solid #D8D2C8;
}

/* =========================
   HEADER / BRAND / NAV
========================= */
header {
	background: #F5F1EB;
	border-bottom: 1px solid #EAE4DB;
}

header .inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 18px 20px 14px;
}

.brand {
	text-align: center;
	margin-bottom: 14px;
}

.brand a {
	font-size: 34px;
	font-weight: 700;
	letter-spacing: 0.3px;
	color: #5C5045;
}

nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

nav li {
	display: inline-block;
	margin: 6px 10px;
}

nav a {
	display: inline-block;
	padding: 8px 4px;
	font-size: 15px;
	font-weight: 600;
	color: #5C5045;
}

nav a.active,
nav a:hover {
	color: #8A9A86;
	text-decoration: none;
}

/* =========================
   MAIN
========================= */
.main {
	width: 100%;
}

/* =========================
   HERO
========================= */
.hero {
	background:
		linear-gradient(rgba(245,241,235,0.50), rgba(245,241,235,0.50)),
		url('hero.jpg') center center / cover no-repeat;
	padding: 90px 20px;
	border-bottom: 1px solid #EAE4DB;
}

.hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
}

.hero-text {
	flex: 1 1 58%;
	max-width: 620px;
}

.hero-text h1 {
	font-size: 44px;
	margin-bottom: 20px;
}

.hero-text p {
	font-size: 18px;
	max-width: 620px;
}

.hero-logo {
	flex: 1 1 42%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-logo img {
	max-width: 360px;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.button-row {
	margin-top: 28px;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

/* =========================
   BUTTONS
========================= */
.btn {
	display: inline-block;
	padding: 12px 22px;
	border-radius: 8px;
	font-weight: 700;
	text-decoration: none;
}

.btn:hover {
	text-decoration: none;
}

.btn-primary {
	background: #C6A777;
	color: #FFFFFF;
}

.btn-primary:hover {
	background: #B89663;
	color: #FFFFFF;
}

.btn-secondary {
	background: #A8B2A1;
	color: #FFFFFF;
}

.btn-secondary:hover {
	background: #8F9B88;
	color: #FFFFFF;
}

/* =========================
   CONTENT SECTIONS
========================= */
.section {
	padding: 56px 20px;
	background: #F5F1EB;
}

.section-alt {
	background: #EAE4DB;
}

.section-inner {
	max-width: 1000px;
	margin: 0 auto;
}

.section h2 {
	font-size: 32px;
	margin-bottom: 18px;
}

.section h3 {
	font-size: 24px;
	margin-bottom: 12px;
}

.section p,
.section ul {
	font-size: 17px;
}

.section ul {
	padding-left: 22px;
	margin-top: 0;
	margin-bottom: 18px;
	color: #6B6055;
}

.section li {
	margin-bottom: 10px;
}

/* =========================
   FOOTER
========================= */
footer {
	background: #DDD5CB;
	color: #5C5045;
	padding: 42px 20px 20px;
	border-top: 1px solid #CFC6BB;
}

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: space-between;
}

.footer-col {
	flex: 1 1 250px;
	min-width: 220px;
}

.footer-col strong {
	display: inline-block;
	margin-bottom: 10px;
	color: #5C5045;
}

.footer-col a {
	color: #5C5045;
}

.footer-col a:hover {
	color: #8A9A86;
}

.footer-copy {
	max-width: 1200px;
	margin: 24px auto 0;
	padding-top: 18px;
	border-top: 1px solid #C8BEB2;
	text-align: center;
	font-size: 14px;
	color: #6B6055;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
	.hero {
		padding: 70px 20px;
	}

	.hero-inner {
		flex-direction: column-reverse;
		text-align: center;
		gap: 30px;
	}

	.hero-text {
		max-width: 100%;
	}

	.hero-text p {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-logo img {
		max-width: 280px;
	}

	.button-row {
		justify-content: center;
	}

	.hero-text h1 {
		font-size: 34px;
	}
}

@media (max-width: 768px) {
	header .inner {
		padding: 16px 16px 12px;
	}

	.brand a {
		font-size: 28px;
	}

	nav li {
		display: block;
		margin: 4px 0;
	}

	.hero {
		padding: 56px 16px;
	}

	.hero-text h1 {
		font-size: 30px;
	}

	.hero-text p {
		font-size: 17px;
	}

	.section {
		padding: 42px 16px;
	}

	.section h2 {
		font-size: 28px;
	}

	.section p,
	.section ul {
		font-size: 16px;
	}

	.footer-inner {
		flex-direction: column;
		gap: 20px;
	}
}
/* MOBILE TOP BAR FIX */
@media (max-width: 768px) {
	.top-bar {
		font-size: 13px;
		line-height: 1.4;
		padding: 12px 10px;
	}

	.top-bar br {
		display: block;
	}
}