/* ============================================================
   SEO Pages Template — seo-pages.css
   ============================================================ */

/* ─── Hero ─────────────────────────────────────────────────── */

.seo-hero {
	padding: 130px 0 60px;
	background: #fff;
}

.seo-hero__title {
	font-family: 'Noe-Display', serif;
	font-size: 40px;
	color: #675842;
	text-align: center;
	margin-bottom: 40px;
	line-height: 1.2;
}

.seo-hero__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: stretch;
}

.seo-hero__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 18px;
}

.seo-hero__text p {
	margin-bottom: 12px;
	line-height: 1.7;
}

.seo-hero__image {
	min-height: 300px;
}

.seo-hero__image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

/* ─── Buttons ───────────────────────────────────────────────── */

.seo-btns {
	display: flex;
	gap: 16px;
	margin-top: 28px;
	flex-wrap: wrap;
}

.seo-btn {
	display: inline-block;
	padding: 13px 36px;
	min-width: 200px;
	text-align: center;
	font-family: 'Heebo', sans-serif;
	font-size: 15px;
	text-decoration: none !important;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
	cursor: pointer;
	line-height: 1.5;
}

.seo-btn--filled {
	background: #675842;
	color: #fff !important;
	border: 1px solid #675842;
}

.seo-btn--filled:hover {
	background: #CFBF99;
	border-color: #CFBF99;
	color: #1A1A18 !important;
}

.seo-btn--outline {
	background: transparent;
	color: #675842 !important;
	border: 1px solid #675842;
}

.seo-btn--outline:hover {
	background: #675842;
	color: #fff !important;
}

/* ─── Full-width separator image ────────────────────────────── */

.seo-fullwidth-image {
	width: 100%;
	max-width: 1220px;
	margin: 0 auto;
	overflow: hidden;
}

.seo-fullwidth-image img {
	width: 100%;
	height: auto;
	display: block;
	max-height: 480px;
	object-fit: cover;
}

/* ─── Content section ───────────────────────────────────────── */

.seo-content {
	background: #fdf6ed;
	padding: 60px 0;
}

.seo-content__block {
	margin-bottom: 48px;
}

.seo-content__block:last-of-type {
	margin-bottom: 0;
}

.seo-content__heading {
	font-family: 'Noe-Display', serif;
	font-size: 26px;
	color: #675842;
	text-align: center;
	margin-bottom: 16px;
	line-height: 1.3;
}

.seo-content__text p {
	margin-bottom: 12px;
	line-height: 1.7;
}

.seo-content .seo-btns {
	margin-top: 48px;
}

/* ─── CTA section ───────────────────────────────────────────── */

.seo-cta {
	position: relative;
	background-color: #1A1A18;
	background-size: cover;
	background-position: center;
	padding: 80px 0;
	text-align: center;
}

.seo-cta__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.58);
}

.seo-cta__inner {
	position: relative;
	z-index: 1;
}

.seo-cta__subtitle {
	font-family: 'Heebo', sans-serif;
	font-size: 16px;
	color: #fff;
	margin-bottom: 20px;
	letter-spacing: 0.3px;
}

.seo-cta__heading {
	font-family: 'Noe-Display', serif;
	font-size: 30px;
	color: #fff;
	font-weight: 700;
	max-width: 720px;
	margin: 0 auto 36px;
	line-height: 1.35;
}

.seo-btn--cta {
	background: #675842;
	color: #fff !important;
	border: 1px solid #675842;
	padding: 14px 48px;
	font-size: 15px;
	min-width: 260px;
	text-align: center;
	display: inline-block;
}

.seo-btn--cta:hover {
	background: #CFBF99;
	border-color: #CFBF99;
	color: #1A1A18 !important;
}

/* ─── Responsive ────────────────────────────────────────────── */

@media (max-width: 991px) {
	.seo-hero {
		padding-top: 80px;
	}

	.seo-hero__row {
		grid-template-columns: 1fr;
	}

	.seo-hero__image {
		order: -1;
	}
}

@media (max-width: 767px) {
	.seo-hero {
		padding: 40px 0 36px;
	}

	.seo-hero__title {
		font-size: 28px;
		margin-bottom: 28px;
	}

	.seo-content {
		padding: 40px 0;
	}

	.seo-content__heading {
		font-size: 22px;
	}

	.seo-cta {
		padding: 60px 0;
	}

	.seo-cta__heading {
		font-size: 22px;
	}

	.seo-btn--cta {
		min-width: 200px;
		padding: 12px 32px;
	}

	.seo-btns {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ============================================================
   SEO Landing Pages Template
   ============================================================ */

/* ─── Hero ─────────────────────────────────────────────────── */

.seo-lp-hero {
	padding: 130px 0 60px;
	background: #fff;
}

.seo-lp-hero__title {
	font-family: 'Noe-Display', serif;
	font-size: 40px;
	color: #675842;
	text-align: center;
	margin-bottom: 40px;
	line-height: 1.2;
}

.seo-lp-hero__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: stretch;
}

.seo-lp-hero__image {
	min-height: 300px;
}

.seo-lp-hero__image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.seo-lp-hero__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 18px;
}

.seo-lp-hero__heading {
	font-family: 'Noe-Display', serif;
	font-size: 22px;
	color: #675842;
	margin-bottom: 10px;
	line-height: 1.3;
}

.seo-lp-hero__subheading {
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 16px;
	line-height: 1.4;
}

.seo-lp-hero__text p {
	margin-bottom: 12px;
	line-height: 1.7;
}

/* ─── Buttons ───────────────────────────────────────────────── */

.seo-lp-btns {
	display: flex;
	gap: 16px;
	margin-top: 28px;
	flex-wrap: wrap;
}

.seo-lp-btn {
	display: inline-block;
	padding: 13px 36px;
	min-width: 240px;
	text-align: center;
	font-family: 'Heebo', sans-serif;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none !important;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
	cursor: pointer;
	line-height: 1.5;
	border-radius: 6px;
}

.seo-lp-btn--filled {
	background: #675842;
	color: #fff !important;
	border: 1px solid #675842;
}

.seo-lp-btn--filled:hover {
	background: #CFBF99;
	border-color: #CFBF99;
	color: #fff !important;
}

.seo-lp-btn--outline {
	background: transparent;
	color: #1A1A18 !important;
	border: 1px solid #675842;
}

.seo-lp-btn--outline:hover {
	background: #CFBF99;
	border-color: #CFBF99;
	color: #1A1A18 !important;
}

/* ─── Feature Cards ─────────────────────────────────────────── */

.seo-lp-cards {
	padding: 60px 0;
	background: #fff;
}

.seo-lp-cards__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.seo-lp-card {
	border: 1px solid #e0d8cc;
	border-radius: 6px;
	overflow: hidden;
}

.seo-lp-card__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.seo-lp-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.seo-lp-card__body {
	padding: 20px 16px 24px;
	text-align: center;
}

.seo-lp-card__title {
	font-family: 'Heebo', sans-serif;
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 10px;
	color: #1A1A18;
}

.seo-lp-card__text {
	font-size: 15px;
	line-height: 1.6;
	color: #555;
}

/* ─── Mid Banner ─────────────────────────────────────────────── */

.seo-lp-banner {
	position: relative;
	background-color: #1A1A18;
	background-size: cover;
	background-position: center;
	padding: 80px 20px;
	text-align: center;
}

.seo-lp-banner__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.seo-lp-banner__text {
	position: relative;
	z-index: 1;
	font-family: 'Noe-Display', serif;
	font-size: 38px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	max-width: 800px;
	margin: 0 auto;
}

/* ─── Content section ───────────────────────────────────────── */

.seo-lp-content {
	background: #fdf6ed;
	padding: 60px 0;
}

.seo-lp-content__block {
	margin-bottom: 48px;
}

.seo-lp-content__block:last-of-type {
	margin-bottom: 0;
}

.seo-lp-content__heading {
	font-family: 'Noe-Display', serif;
	font-size: 26px;
	color: #675842;
	text-align: center;
	margin-bottom: 16px;
	line-height: 1.3;
}

.seo-lp-content__text p {
	margin-bottom: 12px;
	line-height: 1.7;
}

.seo-lp-content .seo-lp-btns {
	margin-top: 48px;
}

/* ─── Footer CTA ─────────────────────────────────────────────── */

.seo-lp-footer {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 220px;
	background-color: #1A1A18;
	background-size: cover;
	background-position: center;
}

.seo-lp-footer__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	pointer-events: none;
}

.seo-lp-footer__text-col {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	padding: 56px 48px;
}

.seo-lp-footer__heading {
	font-family: 'Noe-Display', serif;
	font-size: 34px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	margin: 0;
}

.seo-lp-footer__btns {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	padding: 40px 32px;
	align-items: center;
}

.seo-lp-footer__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 50px 32px;
	border-radius: 8px;
	font-family: 'Heebo', sans-serif;
	font-size: 20px;
	font-weight: 500;
	text-decoration: none !important;
	text-align: center;
	transition: opacity 0.2s;
	line-height: 1.4;
}

.seo-lp-footer__btn--primary {
	background: #675842;
	color: #fff !important;
}

.seo-lp-footer__btn--secondary {
	background: transparent;
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, 0.6);
}

.seo-lp-footer__btn--primary:hover {
	background: #CFBF99;
	color: #fff !important;
}

.seo-lp-footer__btn--secondary:hover {
	background: #CFBF99;
	border-color: #CFBF99;
	color: #1A1A18 !important;
}

/* ─── Responsive (Landing) ──────────────────────────────────── */

@media (max-width: 991px) {
	.seo-lp-hero {
		padding-top: 80px;
	}

	.seo-lp-hero__row {
		grid-template-columns: 1fr;
	}

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

	.seo-lp-footer__text-col {
		padding: 48px 32px;
	}

	.seo-lp-footer__btns {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 767px) {
	.seo-lp-hero {
		padding: 40px 0 36px;
	}

	.seo-lp-hero__title {
		font-size: 28px;
		margin-bottom: 28px;
	}

	.seo-lp-hero__heading {
		font-size: 19px;
	}

	.seo-lp-cards__grid {
		grid-template-columns: 1fr;
	}

	.seo-lp-banner__text {
		font-size: 26px;
	}

	.seo-lp-content {
		padding: 40px 0;
	}

	.seo-lp-content__heading {
		font-size: 22px;
	}

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

	.seo-lp-footer__heading {
		font-size: 26px;
	}

	.seo-lp-footer__btns {
		grid-template-columns: 1fr;
		padding: 28px 24px;
	}

	.seo-lp-btns {
		flex-direction: column;
		align-items: flex-start;
	}
}
