:root {
	--emerald-bg: #ffffff;
	--emerald-surface: #ffffff;
	--emerald-text: #2f2f2f;
	--emerald-muted: #666666;
	--emerald-border: #dedede;
	--emerald-primary: #2f2f2f;
	--emerald-accent: #0f3f35;
	--emerald-button-bg: #2f2f2f;
	--emerald-button-text: #ffffff;
	--emerald-button-hover-bg: #0f3f35;
	--emerald-button-hover-text: #ffffff;
	--emerald-header-bg: #ffffff;
	--emerald-footer-bg: rgba(255, 255, 255, 0.88);
	--emerald-available: #0f3f35;
	--emerald-sold: #7a1f1f;
	--emerald-hold: #8a6d1d;
	--emerald-heading-font: 'Poppins', sans-serif;
	--emerald-body-font: 'Montserrat', sans-serif;
	--emerald-nav-font: 'Poppins', sans-serif;
	--emerald-button-font: 'Poppins', sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--emerald-bg);
	color: var(--emerald-text);
	font-family: var(--emerald-body-font);
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.65em;
	color: var(--emerald-primary);
	font-family: var(--emerald-heading-font);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: 0;
}

h1 {
	font-size: clamp(2.25rem, 5vw, 4.5rem);
}

h2 {
	font-size: clamp(1.8rem, 3vw, 3rem);
}

p {
	margin: 0 0 1.25rem;
}

a {
	color: var(--emerald-accent);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

a:hover,
a:focus {
	color: var(--emerald-primary);
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
.emerald-btn,
input[type="button"],
input[type="submit"],
input[type="reset"] {
	border: 1px solid var(--emerald-button-bg);
	border-radius: 8px;
	background: var(--emerald-button-bg);
	color: var(--emerald-button-text);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.75rem 1.45rem;
	font-family: var(--emerald-button-font);
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

button:hover,
button:focus,
.emerald-btn:hover,
.emerald-btn:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus {
	border-color: var(--emerald-button-hover-bg);
	background: var(--emerald-button-hover-bg);
	color: var(--emerald-button-hover-text);
}

.emerald-btn-primary {
	background: var(--emerald-button-bg);
	color: var(--emerald-button-text);
}

.emerald-btn-secondary {
	background: transparent;
	color: var(--emerald-primary);
}

.emerald-btn-text {
	min-height: auto;
	border-color: transparent;
	background: transparent;
	color: var(--emerald-accent);
	padding: 0;
}

label {
	display: inline-block;
	margin-bottom: 0.4rem;
	font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
select,
textarea {
	width: 100%;
	border: 1px solid var(--emerald-border);
	border-radius: 8px;
	background: var(--emerald-surface);
	color: var(--emerald-text);
	padding: 0.8rem 0.95rem;
}

textarea {
	min-height: 140px;
	resize: vertical;
}

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

:focus-visible {
	outline: 2px solid var(--emerald-accent);
	outline-offset: 3px;
}

.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;
}

.screen-reader-text:focus {
	top: 1rem;
	left: 1rem;
	z-index: 100000;
	width: auto;
	height: auto;
	clip: auto;
	background: var(--emerald-surface);
	color: var(--emerald-text);
	padding: 0.75rem 1rem;
}

.emerald-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
