@font-face {
	font-family: 'Milk And Honey';
	src: url('../fonts/MilkAndHoney.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

/* -----------------------------------------------
   Reset & base
----------------------------------------------- */

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

body {
	font-family: 'Times New Roman', Times, serif;
	background: #EDE8D0;
	color: #4B4139;
}

/* -----------------------------------------------
   Navigation
----------------------------------------------- */

#navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	column-gap: 3rem;
	padding: 1.4rem 3rem;
	background: rgba(34, 54, 49, 0.92);
}

.nav-left {
	justify-content: flex-end;
}

.nav-left,
.nav-right {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-left a,
.nav-right a {
	color: rgba(237, 232, 208, 0.75);
	text-decoration: none;
	font-size: 0.68rem;
	letter-spacing: 0.14em;
	font-weight: 400;
	text-transform: uppercase;
	transition: color 0.3s;
}

.nav-left a:hover,
.nav-right a:hover,
.nav-left a.active,
.nav-right a.active {
	color: #EDE8D0;
}

.nav-brand a {
	text-transform: uppercase;
	font-family: 'Milk And Honey', cursive;
	font-size: 2rem;
	color: #EDE8D0;
	text-decoration: none;
	white-space: nowrap;
}

.nav-logo {
	height: 80px;
	width: auto;
	display: block;
}

/* -----------------------------------------------
   Hero
----------------------------------------------- */

#faq-hero {
	background-color: #223631;
	height: 28vh;
	min-height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding-top: 80px;
}

.faq-hero-label {
	font-size: 0.65rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: rgba(237, 232, 208, 0.6);
	margin-bottom: 0.8rem;
}

.faq-hero-title {
	font-family: 'Milk And Honey', cursive;
	font-size: 4.5rem;
	font-weight: 400;
	color: #EDE8D0;
	line-height: 1;
}

/* -----------------------------------------------
   FAQ content
----------------------------------------------- */

#faq-content {
	max-width: 760px;
	margin: 0 auto;
	padding: 4rem 2rem 6rem;
}

.faq-intro {
	text-align: center;
	font-size: 0.82rem;
	font-weight: 300;
	line-height: 1.9;
	color: #777;
	margin-bottom: 3rem;
}

/* -----------------------------------------------
   Accordion
----------------------------------------------- */

.accordion {
	border-top: 1px solid #e4e0d8;
}

.accordion-item {
	border-bottom: 1px solid #e4e0d8;
}

.accordion-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: none;
	border: none;
	cursor: pointer;
	padding: 1.3rem 0;
	text-align: left;
	font-family: 'Times New Roman', Times, serif;
	font-size: 0.82rem;
	font-weight: 400;
	color: #4B4139;
	gap: 1rem;
	transition: color 0.2s;
}

.accordion-btn:hover {
	color: #223631;
}

.accordion-icon {
	flex-shrink: 0;
	font-size: 1.3rem;
	font-weight: 300;
	color: #223631;
	line-height: 1;
	transition: transform 0.3s;
}

.accordion-panel {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-item.open .accordion-panel {
	max-height: 400px;
	padding-bottom: 1.3rem;
}

.accordion-panel p {
	font-size: 0.8rem;
	font-weight: 300;
	line-height: 1.9;
	color: #666;
}

/* -----------------------------------------------
   CTA block
----------------------------------------------- */

.faq-cta {
	margin-top: 4rem;
	background: #223631;
	padding: 3.5rem 3rem;
	text-align: center;
}

.faq-cta-title {
	font-family: 'Milk And Honey', cursive;
	font-size: 2.8rem;
	font-weight: 400;
	color: #EDE8D0;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.faq-cta-text {
	font-size: 0.78rem;
	font-weight: 300;
	color: rgba(237, 232, 208, 0.75);
	margin-bottom: 2rem;
}

.faq-cta-btn {
	display: inline-block;
	padding: 0.7rem 2.2rem;
	border: 1px solid rgba(237, 232, 208, 0.6);
	color: rgba(237, 232, 208, 0.9);
	text-decoration: none;
	font-size: 0.62rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 400;
	transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.faq-cta-btn:hover {
	background: rgba(237, 232, 208, 0.12);
	border-color: #EDE8D0;
	color: #EDE8D0;
}

/* -----------------------------------------------
   Footer
----------------------------------------------- */

#footer {
	background: #4B4139;
	padding: 2.5rem 2rem;
	text-align: center;
}

.footer-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.footer-brand {
	text-transform: uppercase;
	font-family: 'Milk And Honey', cursive;
	font-size: 2rem;
	color: #EDE8D0;
}

.footer-logo {
	height: 60px;
	width: auto;
	display: block;
}

.footer-tagline {
	font-size: 0.6rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(237, 232, 208, 0.4);
	font-weight: 300;
}

.footer-links {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.footer-links a {
	color: rgba(237, 232, 208, 0.5);
	text-decoration: none;
	font-size: 0.6rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: rgba(237, 232, 208, 0.85);
}

.footer-links span {
	color: rgba(237, 232, 208, 0.3);
	font-size: 0.7rem;
}

/* -----------------------------------------------
   Hamburger
----------------------------------------------- */

.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.4rem;
	z-index: 200;
}

.hamburger span {
	display: block;
	width: 22px;
	height: 1.5px;
	background: #EDE8D0;
	transition: transform 0.3s, opacity 0.3s;
	transform-origin: center;
}

.hamburger.open span:nth-child(1) {
	transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
	opacity: 0;
}

.hamburger.open span:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}

#nav-mobile {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(34, 54, 49, 0.97);
	z-index: 150;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2.5rem;
}

#nav-mobile.open {
	display: flex;
}

#nav-mobile a {
	color: rgba(237, 232, 208, 0.8);
	text-decoration: none;
	font-size: 1rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 400;
	transition: color 0.2s;
}

#nav-mobile a:hover,
#nav-mobile a.active {
	color: #EDE8D0;
}

/* -----------------------------------------------
   Responsive
----------------------------------------------- */

@media (max-width: 620px) {
	#navbar {
		padding: 1rem 1.2rem;
		column-gap: 0.5rem;
	}

	.nav-brand a {
		font-size: 1.3rem;
	}

	.nav-logo {
		height: 60px;
	}

	.nav-left,
	.nav-right {
		display: none;
	}

	.hamburger {
		display: flex;
		grid-column: 3;
		grid-row: 1;
		justify-self: end;
	}

	.faq-hero-title {
		font-size: 3.2rem;
	}

	.faq-intro br {
		display: none;
	}

	.faq-cta {
		padding: 2.5rem 1.5rem;
	}

	.faq-cta-title {
		font-size: 2rem;
	}
}
