/* ==========================================================================
   Base Styles
   ========================================================================== */

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--benxi-font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--benxi-dark);
	background-color: var(--benxi-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.benxi-menu-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

ul,
ol {
	list-style: none;
}

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

/* Skip Link */
.benxi-skip-link {
	position: absolute;
	top: -100%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10000;
	padding: 0.75rem 1.5rem;
	background: var(--benxi-blue);
	color: var(--benxi-white);
	border-radius: 0 0 8px 8px;
	font-weight: 600;
	transition: top 0.2s var(--benxi-ease);
}

.benxi-skip-link:focus {
	top: 0;
	outline: 2px solid var(--benxi-green);
	outline-offset: 2px;
}

/* Container */
.benxi-container {
	width: 100%;
	max-width: var(--benxi-container);
	margin-inline: auto;
	padding-inline: var(--benxi-gutter);
}

/* Focus States */
:focus-visible {
	outline: 2px solid var(--benxi-blue);
	outline-offset: 3px;
}

/* Minimal Footer (placeholder) */
.benxi-footer {
	padding: 2rem 0;
	background: var(--benxi-light-gray);
}

.benxi-footer__copy {
	font-size: 0.875rem;
	color: rgba(17, 17, 17, 0.6);
	text-align: center;
}

/* Site Main */
.site-main {
	min-height: 50vh;
}
