/* Header & Navigation */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(226, 219, 209, 0.5);
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4rem;
}
@media (min-width: 768px) { .header-inner { height: 5rem; } }

.site-branding img,
.custom-logo-link img { height: 2.5rem; width: auto; }
@media (min-width: 768px) {
	.site-branding img,
	.custom-logo-link img { height: 3.5rem; }
}
.site-title-link { display: flex; flex-direction: column; }
.site-title { font-family: var(--rm-heading-font); font-size: 1.5rem; color: var(--rm-text); }
.site-description { font-size: 0.7rem; color: var(--rm-muted); letter-spacing: 0.05em; }

/* Body offset for fixed header */
body { padding-top: 4rem; }
@media (min-width: 768px) { body { padding-top: 5rem; } }

.main-navigation { display: none; }
@media (min-width: 900px) {
	.main-navigation { display: flex; align-items: center; gap: 2rem; }
}
.primary-menu {
	list-style: none;
	display: flex;
	gap: 2rem;
	margin: 0;
	padding: 0;
}
.primary-menu a {
	color: var(--rm-muted);
	font-size: 0.9rem;
	letter-spacing: 0.02em;
	transition: color .2s;
}
.primary-menu a:hover,
.primary-menu .current-menu-item > a {
	color: var(--rm-primary);
	font-weight: 500;
}
.btn-book { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

.menu-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	width: 40px;
	height: 40px;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle-bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--rm-text);
	transition: transform .2s ease;
}
.menu-toggle[aria-expanded=true] .menu-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded=true] .menu-toggle-bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded=true] .menu-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-navigation {
	background: var(--rm-card);
	border-bottom: 1px solid var(--rm-border);
	padding: 1rem 1.5rem 1.5rem;
}
.mobile-navigation[hidden] { display: none; }
.mobile-menu {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
}
.mobile-menu li { padding: 0.75rem 0; }
.mobile-menu a { color: var(--rm-muted); font-size: 1rem; }
.mobile-menu .current-menu-item > a { color: var(--rm-primary); font-weight: 500; }
.btn-book-mobile { width: 100%; }
