:root {
	--eliyas-bg: #fbfaf8;
	--eliyas-surface: #ffffff;
	--eliyas-text: #1e1b18;
	--eliyas-muted: #6f665f;
	--eliyas-border: #e5ded7;
	--eliyas-accent: #8b2f42;
	--eliyas-accent-dark: #4d1f2a;
	--eliyas-focus: #1b6f8f;
	--eliyas-max: 1180px;
	--eliyas-radius: 8px;
	--eliyas-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--eliyas-bg);
	color: var(--eliyas-text);
	font-family: var(--eliyas-font);
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0;
}

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

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

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

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

.skip-link:focus {
	position: fixed;
	top: 1rem;
	left: 1rem;
	z-index: 999;
	padding: 0.75rem 1rem;
	background: var(--eliyas-text);
	color: #fff;
}

.button,
button,
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.75rem 1rem;
	border: 1px solid var(--eliyas-text);
	border-radius: var(--eliyas-radius);
	background: transparent;
	color: var(--eliyas-text);
	cursor: pointer;
	text-decoration: none;
}

.button--dark,
button:hover,
input[type="submit"]:hover {
	background: var(--eliyas-text);
	color: #fff;
}

:focus-visible {
	outline: 3px solid var(--eliyas-focus);
	outline-offset: 3px;
}

