html {
	scroll-behavior: smooth;
}

:root {
	--ozark-red: #872220;
	--ozark-red-dark: #6f1b19;
	--ozark-red-soft: #a03030;
	--ozark-cream: #faf7f2;
	--ozark-ink: #1f1a17;
	--ozark-muted: #f1ede6;
	--ozark-border: rgba(31, 26, 23, 0.12);
	--ozark-shadow: 0 18px 50px rgba(17, 12, 10, 0.12);
	--ozark-radius: 18px;
	--ozark-max-width: 1120px;
}

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

body {
	margin: 0;
	font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	color: var(--ozark-ink);
	background: var(--ozark-cream);
	line-height: 1.6;
}

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

a {
	color: inherit;
}

.skip-link {
	position: absolute;
	left: 1rem;
	top: -4rem;
	z-index: 1000;
	padding: 0.75rem 1rem;
	background: #fff;
	color: var(--ozark-ink);
	border-radius: 10px;
	box-shadow: var(--ozark-shadow);
}

.skip-link:focus {
	top: 1rem;
}

.container {
	width: min(calc(100% - 2rem), var(--ozark-max-width));
	margin: 0 auto;
}

.site-header {
	padding: 1.75rem 0;
	background: linear-gradient(135deg, var(--ozark-red-dark), var(--ozark-red));
	color: #fff;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.custom-logo-link,
.site-branding__link {
	display: inline-flex;
	align-items: center;
}

.custom-logo,
.site-logo-fallback {
	width: auto;
	max-height: 240px;
}

.site-header__cta {
	display: grid;
	gap: 0.4rem;
	justify-items: end;
	text-align: right;
}

.site-header__eyebrow {
	margin: 0;
	font-size: 0.98rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.site-phone,
.contact-phone {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 1.4rem;
	border-radius: 999px;
	font-size: 1.15rem;
	font-weight: 700;
	text-decoration: none;
	background: #fff;
	color: var(--ozark-red);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.site-phone:hover,
.site-phone:focus-visible,
.contact-phone:hover,
.contact-phone:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.site-main {
	padding-bottom: 0;
}

.section {
	padding: 4rem 0;
}

.section--muted {
	background: var(--ozark-muted);
}

.hero-section {
	padding-top: 4.5rem;
}

.section-title {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 4vw, 2.75rem);
	line-height: 1.1;
	text-align: center;
}

.section-copy {
	max-width: 70ch;
	margin: 0 auto;
	font-size: 1.05rem;
}

.section-copy--center {
	text-align: center;
}

.section-copy p {
	margin: 0 0 1rem;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 2rem;
}

.service-card {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 1.1rem;
	background: var(--ozark-red);
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
	border-radius: 14px;
	box-shadow: 0 10px 22px rgba(135, 34, 32, 0.18);
}

.service-details {
	margin-top: 1.5rem;
}

.service-details__actions {
	display: flex;
	justify-content: center;
}

.service-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.9rem 1.4rem;
	border: 1px solid var(--ozark-border);
	border-radius: 999px;
	background: #fff;
	color: var(--ozark-red);
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.service-toggle:hover,
.service-toggle:focus-visible {
	background: var(--ozark-red);
	border-color: var(--ozark-red);
	color: #fff;
}

.service-toggle::after {
	content: "+";
	font-size: 1.3rem;
	line-height: 1;
}

.service-toggle[aria-expanded="true"]::after {
	content: "-";
}

.service-grid--extra {
	margin-top: 1.25rem;
}

.service-grid--extra[hidden] {
	display: none;
}

.about-section__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: 2rem;
}

.about-section__media {
	order: 2;
}

.about-section__content {
	order: 1;
}

.about-section__content .section-title {
	text-align: left;
}

.about-section__image {
	width: 100%;
	border-radius: 24px;
	box-shadow: var(--ozark-shadow);
	object-fit: cover;
}

.trust-banner {
	padding: 2.2rem 0;
	background: linear-gradient(135deg, var(--ozark-red-dark), var(--ozark-red));
	color: #fff;
	text-align: center;
}

.trust-banner__text {
	margin: 0;
	font-size: clamp(1.35rem, 3vw, 1.9rem);
	font-weight: 700;
}

.gallery-slider {
	margin-top: 2rem;
	position: relative;
}

.gallery-slider__slides {
	position: relative;
}

.gallery-slider__slide {
	display: none;
	margin: 0;
}

.gallery-slider__slide.is-active {
	display: block;
}

.gallery-slider__frame {
	overflow: hidden;
	border-radius: 24px;
	background: #d9d2c4;
	box-shadow: var(--ozark-shadow);
}

.gallery-slider__image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.gallery-slider__arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(24, 19, 17, 0.68);
	color: #fff;
	font: inherit;
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	transition: background 0.18s ease, transform 0.18s ease;
}

.gallery-slider__arrow-icon {
	display: block;
	width: 1em;
	line-height: 1;
	text-align: center;
}

.gallery-slider__arrow:hover,
.gallery-slider__arrow:focus-visible {
	background: rgba(135, 34, 32, 0.88);
}

.gallery-slider__arrow--prev {
	left: 0.85rem;
}

.gallery-slider__arrow--next {
	right: 0.85rem;
}

.gallery-empty {
	padding: 1.25rem 1.4rem;
	margin-top: 2rem;
	background: #fff;
	border: 1px dashed rgba(135, 34, 32, 0.35);
	border-radius: var(--ozark-radius);
	text-align: center;
}

.contact-section {
	text-align: center;
}

.site-footer {
	padding: 2rem 0;
	background: #181311;
	color: rgba(255, 255, 255, 0.92);
	text-align: center;
}

.site-footer__address {
	margin: 0 0 0.8rem;
	font-size: 0.98rem;
}

.site-footer__copy {
	margin: 0;
	font-size: 0.95rem;
}

.prose {
	padding-top: 1rem;
	padding-bottom: 2rem;
}

.prose .section-title {
	text-align: left;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 900px) {
	.site-header__inner,
	.about-section__layout {
		grid-template-columns: 1fr;
	}

	.site-header__inner {
		display: grid;
	}

	.site-branding {
		justify-self: center;
		text-align: center;
	}

	.custom-logo-link,
	.site-branding__link {
		justify-content: center;
	}

	.site-header__cta {
		justify-items: center;
		text-align: center;
	}

	.about-section__media,
	.about-section__content {
		order: initial;
	}

	.about-section__content .section-title {
		text-align: center;
	}

	.service-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

	@media (max-width: 640px) {
		.section {
			padding: 3rem 0;
	}

	.hero-section {
		padding-top: 3.25rem;
	}

	.custom-logo,
	.site-logo-fallback {
		max-height: 180px;
	}

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

		.gallery-slider__arrow {
			width: 40px;
			height: 40px;
			font-size: 1.45rem;
		}

		.gallery-slider__arrow--prev {
			left: 0.5rem;
		}

		.gallery-slider__arrow--next {
			right: 0.5rem;
		}
	}
