/* ── NAV ──────────────────────────────────────────────────── */

nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background: var(--nav-bg);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--ink-10);
	height: 68px;
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.nav-logo {
	font-family: "Cormorant Garamond", serif;
	font-size: var(--fs-700);
	font-weight: 700;
	color: var(--olive);
	letter-spacing: -0.02em;
}
.nav-logo:hover {
	color: rgb(96, 123, 41);
}

.nav-links {
	display: flex;
	gap: 2rem;
	align-items: center;
	cursor : pointer;
}

.nav-links a {
	font-size: var(--fs-300);
	font-weight: 500;
	color: var(--ink-60);
	letter-spacing: 0.04em;
	transition: color 0.2s;
	position: relative;
}
.nav-links a::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 1.5px;
	background: var(--olive);
	transition: width 0.25s;
}
.nav-links a:hover {
	color: var(--olive);
}
.nav-links a:hover::after,
.nav-links a.active::after {
	width: 100%;
}
.nav-links a.active {
	color: var(--olive);
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	color: var(--ink);
	flex-direction: column;
	gap: 5px;
	padding: 6px;
}
.nav-toggle span {
	display: block;
	width: 24px;
	height: 3.5px;
	background: var(--ink);
	border-radius: 99px;
	transition:
		transform 0.3s,
		opacity 0.3s;
}
.nav-toggle span:hover {
	background: var(--olive-lt);
}

.theme-toggle {
	background: none;
	border: none;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ink-60);
	cursor: pointer;
	transition: color 0.2s;
}
.theme-toggle:hover {
	color: var(--olive);
}
.theme-toggle svg {
	width: 22px;
	height: 22px;
}

/* ── MOBILE MENU ──────────────────────────────────────────── */
.mobile-menu {
	display: none;
	top: 72px;
	left: 0;
	position: fixed;
	width: 100%;
	align-items: center;
	justify-content: center;
	background: var(--warm-bg);
	z-index: 99;
	padding: 1.5rem clamp(1.25rem, 5vw, 4rem);
	flex-direction: column;
	gap: var(--fs-400);
}
.mobile-menu.open {
	display: flex;
}

.mobile-link {
	font-size: var(--fs-500);
	font-weight: 500;
	color: var(--ink-60);
	padding: 0.011rem 0;
	display: flex;
	align-items: center;
	gap: var(--fs-300);
	transition: color 0.2s;
}
.mobile-link:hover {
	color: var(--olive);
}
