.btn {
	display: flex;
	align-items: center;
	text-align: center;
	padding: 1rem;

	background-color: #1f4d3a;
	color: white;

	text-decoration: none;
	font-weight: 600;

	border-radius: 0.5rem;
	transition:
		transform 0.08s ease,
		box-shadow 0.08s ease,
		opacity 0.08s;
}

#contact-submit-btn {
	display: flex;
	text-align: center;
	justify-content: center;
	align-self: center;
	width: 45%;
}
@media (max-width: 698px) {
	#contact-submit-btn {
		width: auto;
		align-self: stretch;
	}
}

.btn:active {
	transform: translateY(1px);
	opacity: 0.9;
}
.btn:hover {
	background-color: #16392b;
}
.btn[disabled] {
	opacity: 0.6;
	cursor: wait;
}
#contact-us-today {
	justify-content: center;
}

footer {
	margin: 1rem;
	margin-top: 3rem;
}
.container {
	max-width: 72rem;
	margin-inline: auto;
	padding-inline: auto;
}

h1 {
	font-size: clamp(1.25rem, 4vw, 2.5rem);
	margin-top: 0rem;
	margin-bottom: 0.75rem;
}

h2 {
	margin-top: 0rem;
	font-size: clamp(1.1rem, 2.5vw, 1.75rem);
}

.hero {
	padding: 2rem 1rem;
	padding-bottom: 0.5rem;
	margin: 0 auto;
	margin-bottom: 0rem;
}

.brand {
	font-size: 2.5rem;
	margin: 0rem;
	padding: 0rem;
	display: flex;
	align-items: flex-end;
	gap: 1rem;
}

.logo-and-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

@media (max-width: 698px) {
	.btn {
		font-size: 0.85rem;
	}
	.logo-and-actions .web-details {
		display: none;
	}

	.logo {
		margin-right: 1.5rem;
	}

	.logo-and-actions .actions .btn {
		justify-content: center;
		align-content: center;
		padding: 0.75rem;
	}
}

.logo {
	width: clamp(160px, 40vw, 320px);
}

.brand h1 {
	font-weight: 200;
}

.actions {
	display: flex;
	gap: 1rem;
}

.web-details {
	color: var(--color-muted);
	font-size: 1rem;
	margin-bottom: 1.5rem;
	margin-top: 0rem;
	font-family: "Libre Franklin", system-ui, sans-serif;
}
.brand span.web-details {
	font-weight: 400;
}

.hero-image {
	width: 100%;
	height: auto;
	border-radius: 0.75rem;
	display: block;
	margin: 1.25rem 0;
	margin-top: 0rem;
	margin-bottom: 0rem;
}
.section {
	margin: 1rem auto;
	padding: 0 1rem;
}
.section-intro {
	color: var(--color-muted);
	max-width: 40rem;
	padding: 0rem 1rem;
}

.section img {
	width: 100%;
	height: auto;
	border-radius: 0.75rem;
	display: flex;
	justify-content: center;
	margin: 0.75rem 0;
	margin-bottom: 0rem;
}

#portfolio-section {
	margin-top: 0rem;
}

.before-after-header {
	margin-bottom: 0.5rem;
}

.section h2.before-after-header {
	display: flex;
	justify-content: center;
}
.before-after {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.before-after img {
	width: 100%;
	height: auto;
	border-radius: 0.5rem;
}

.pic-grid {
	display: grid;
	height: auto;
	grid-template-columns: 1fr 1fr;
	gap: 0.25rem;
}
.pic-grid img {
	height: auto;
	margin-top: 2.75rem;
}
@media (max-width: 698px) {
	.pic-grid {
		display: grid;
		height: auto;
		grid-template-columns: 1fr;
		gap: 0.25rem;
	}
	.pic-grid img {
		height: auto;
		margin-top: 0rem;
	}
}
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-left: 0rem;
	background: #fafafa;
	padding: 1.75rem;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.contact-form label {
	display: flex;
	color: #2b2b2b;
	font-weight: 500;
	margin-bottom: 1rem;
	flex-direction: column;
	font-size: 0.9rem;
	padding: 0.5rem;
	font-family: "Libre Franklin", system-ui, sans-serif;
}
.contact-form input,
.contact-form textarea {
	font-size: 1rem;
	font-family: "Libre Franklin", system-ui, sans-serif;
	background-color: #fbfcfa;
	border: 1px solid #d6d6d6;
	border-radius: 10px;
	margin-top: 0.25rem;
	padding: 0.25rem;
	padding-left: 0.5rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: #2f6f4e;
	box-shadow: 0 0 0 4px rgba(47, 111, 78, 0.15);
	background: #fff;
}
.contact-form .btn {
	margin: 1rem;
}

.contact-form h2 {
	font-weight: 200;
}

.form-status {
	display: flex;
	justify-content: center;
	margin: 0.75rem 0 1rem;
	font-size: 1rem;
}
@media (max-width: 698px) {
	.contact-form {
		padding: 1rem;
	}
	.contact-form input,
	.contact-form textarea {
		padding: 0.5rem 0.6rem;
	}
	.contact-form label {
		padding: 0.25rem 0;
	}
	.btn {
		padding: 0.6rem 1.25rem;
	}
}
.section h1 {
	color: #16392b;
}

.saltpile {
	position: absolute;
	left: -99999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.lightbox {
	inset: 0;
	position: fixed;
	background: rgba(0, 0, 0, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 0.5rem;
}

.lightbox[hidden] {
	display: none;
}

.lightbox img {
	width: 45vw;
	max-width: 50vw;
	max-height: 90vh;
	height: auto;
	object-fit: contain;
	margin: 0rem;
	border-radius: 0.5rem;
}

@media (max-width: 698px) {
	.lightbox {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0.25rem;
		padding: 0.5rem;
	}
	.lightbox img {
		max-width: 100%;
		width: 100%;
		height: auto;
		max-height: 45vh;
		margin: 0;
	}
}
.landing-details {
	margin-top: 0rem;
	background: #fafafa;
	padding: 1.25rem;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
@media (max-width: 698px) {
	.landing-details {
		padding: 0.75rem auto;
		padding-bottom: 0.025rem;
		border-radius: 10px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	}
}
