:root {
	--bg-dark: #090c10;
	--bg-surface: #121722;
	--bg-card: #181f2e;
	--bg-card-hover: #1f273a;
	--border-subtle: #263147;
	--border-gold: rgba(212, 175, 55, 0.35);
	
	--gold: #d4af37;
	--gold-light: #f3df89;
	--gold-dark: #a17f22;
	--gold-glow: rgba(212, 175, 55, 0.2);
	--gold-gradient: linear-gradient(135deg, #f5e29e 0%, #d4af37 50%, #9e7a20 100%);
	--gold-gradient-soft: linear-gradient(135deg, rgba(245, 226, 158, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);

	--text: #f3f5f8;
	--text-muted: #9ba6b8;
	--text-dim: #67758d;

	--green: #10b981;
	--green-glow: rgba(16, 185, 129, 0.25);
	--red: #ef4444;

	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 20px;
	--radius-full: 9999px;

	--font-heading: 'Outfit', sans-serif;
	--font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
	--shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
	--shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.25);
}

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

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--bg-dark);
	color: var(--text);
	font-family: var(--font-body);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	color: #ffffff;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.gold-gradient-text {
	background: var(--gold-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

/* Header & Navbar */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(9, 12, 16, 0.92);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--border-subtle);
	transition: all 0.3s ease;
}

.nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
	padding: 0 1.25rem;
	max-width: 1240px;
	margin: 0 auto;
}

.brand-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: #fff;
}

.logo-badge {
	width: 42px;
	height: 42px;
	border-radius: var(--radius-md);
	background: var(--gold-gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #090c10;
	font-weight: 800;
	font-size: 1.25rem;
	box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.brand-title {
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.brand-subtitle {
	font-size: 0.7rem;
	color: var(--gold);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	display: block;
	font-weight: 600;
}

.nav-links {
	display: none;
	align-items: center;
	gap: 1.5rem;
	list-style: none;
}

@media (min-width: 900px) {
	.nav-links {
		display: flex;
	}
}

.nav-link {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.92rem;
	font-weight: 500;
	transition: color 0.2s;
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.nav-link:hover, .nav-link.active {
	color: var(--gold-light);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

/* Status Indicator */
.status-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.35rem 0.75rem;
	border-radius: var(--radius-full);
	font-size: 0.78rem;
	font-weight: 600;
	background: rgba(16, 185, 129, 0.12);
	color: #34d399;
	border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-pill.closed {
	background: rgba(239, 68, 68, 0.12);
	color: #f87171;
	border-color: rgba(239, 68, 68, 0.3);
}

.status-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #10b981;
	box-shadow: 0 0 8px #10b981;
}

.status-pill.closed .status-dot {
	background: #ef4444;
	box-shadow: 0 0 8px #ef4444;
}

/* Buttons */
.btn-gold {
	background: var(--gold-gradient);
	color: #090c10;
	font-weight: 700;
	font-size: 0.95rem;
	padding: 0.65rem 1.25rem;
	border-radius: var(--radius-full);
	border: none;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: transform 0.2s, box-shadow 0.2s;
	box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(212, 175, 55, 0.4);
}

.btn-outline {
	background: transparent;
	color: var(--text);
	border: 1px solid var(--border-subtle);
	font-weight: 600;
	font-size: 0.9rem;
	padding: 0.65rem 1.15rem;
	border-radius: var(--radius-full);
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.2s;
}

.btn-outline:hover {
	border-color: var(--gold);
	color: var(--gold-light);
	background: rgba(212, 175, 55, 0.08);
}

.btn-call {
	background: #1c2436;
	color: #fff;
	border: 1px solid var(--border-subtle);
	padding: 0.65rem 1rem;
	border-radius: var(--radius-full);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.2s;
}

.btn-call:hover {
	border-color: var(--gold);
	background: #242e45;
}

/* Hero Section */
.hero-section {
	position: relative;
	padding: 4rem 1.25rem 5rem;
	background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.12) 0%, rgba(9, 12, 16, 1) 75%);
	border-bottom: 1px solid var(--border-subtle);
	overflow: hidden;
}

.hero-glow-blob {
	position: absolute;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0,0,0,0) 70%);
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
	filter: blur(40px);
}

.hero-content {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 2;
}

.hero-badges {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
}

.rating-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(24, 31, 46, 0.9);
	border: 1px solid var(--border-gold);
	padding: 0.4rem 0.9rem;
	border-radius: var(--radius-full);
	font-size: 0.85rem;
	font-weight: 600;
}

.stars-row {
	color: #fbbf24;
	letter-spacing: 2px;
	display: inline-flex;
	align-items: center;
}

.hero-title {
	font-size: clamp(2.4rem, 6vw, 4rem);
	font-weight: 800;
	margin-bottom: 1.25rem;
	letter-spacing: -0.03em;
}

.hero-slogan {
	font-size: 1.15rem;
	color: #e2e8f0;
	font-style: italic;
	margin-bottom: 2rem;
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
	padding: 0.75rem 1.25rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: var(--radius-md);
	border-left: 3px solid var(--gold);
}

.hero-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}

.hero-stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	max-width: 800px;
	margin: 0 auto;
}

@media (min-width: 640px) {
	.hero-stats-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.stat-card {
	background: rgba(24, 31, 46, 0.65);
	backdrop-filter: blur(10px);
	border: 1px solid var(--border-subtle);
	padding: 1.25rem 1rem;
	border-radius: var(--radius-md);
	text-align: center;
	transition: border-color 0.2s, transform 0.2s;
}

.stat-card:hover {
	border-color: var(--border-gold);
	transform: translateY(-3px);
}

.stat-value {
	font-size: 1.75rem;
	font-weight: 800;
	font-family: var(--font-heading);
	color: var(--gold-light);
	margin-bottom: 0.25rem;
}

.stat-label {
	font-size: 0.78rem;
	color: var(--text-muted);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Section Common */
.section {
	padding: 5rem 1.25rem;
	position: relative;
}

.section-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 3rem;
}

.section-subtitle {
	color: var(--gold);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-weight: 700;
	margin-bottom: 0.5rem;
	display: block;
}

.section-title {
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	margin-bottom: 0.75rem;
}

.section-desc {
	color: var(--text-muted);
	font-size: 1rem;
}

/* Booking Bar / Quick Sticky Cart */
.quick-booking-bar {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 90;
	background: rgba(18, 23, 34, 0.95);
	backdrop-filter: blur(15px);
	border: 1px solid var(--gold);
	box-shadow: 0 10px 35px rgba(0,0,0,0.8), 0 0 20px rgba(212, 175, 55, 0.25);
	padding: 0.75rem 1.25rem;
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	gap: 1.25rem;
	animation: slideUp 0.3s ease;
	max-width: 90vw;
}

@keyframes slideUp {
	from { transform: translate(-50%, 50px); opacity: 0; }
	to { transform: translate(-50%, 0); opacity: 1; }
}

/* Category Filter Tabs */
.category-tabs {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	overflow-x: auto;
	padding: 0.5rem 0.25rem 1.5rem;
	scrollbar-width: none;
	justify-content: flex-start;
}

@media (min-width: 768px) {
	.category-tabs {
		justify-content: center;
		flex-wrap: wrap;
	}
}

.category-tabs::-webkit-scrollbar {
	display: none;
}

.tab-btn {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	color: var(--text-muted);
	padding: 0.6rem 1.15rem;
	border-radius: var(--radius-full);
	font-size: 0.88rem;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.2s;
}

.tab-btn:hover {
	border-color: var(--gold);
	color: #fff;
}

.tab-btn.active {
	background: var(--gold-gradient);
	color: #090c10;
	border-color: transparent;
	font-weight: 700;
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Services Grid */
.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 680px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1040px) {
	.services-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.service-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: all 0.25s ease;
	position: relative;
	overflow: hidden;
}

.service-card:hover {
	border-color: var(--border-gold);
	background: var(--bg-card-hover);
	transform: translateY(-4px);
	box-shadow: var(--shadow-card);
}

.service-card.selected {
	border-color: var(--gold);
	background: rgba(212, 175, 55, 0.08);
	box-shadow: 0 0 20px rgba(212, 175, 55, 0.18);
}

.service-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 0.72rem;
	font-weight: 700;
	background: rgba(212, 175, 55, 0.15);
	color: var(--gold-light);
	padding: 0.2rem 0.6rem;
	border-radius: var(--radius-full);
	border: 1px solid rgba(212, 175, 55, 0.3);
}

.service-title {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 0.4rem;
	padding-right: 3rem;
}

.service-desc {
	font-size: 0.86rem;
	color: var(--text-muted);
	margin-bottom: 1.25rem;
	line-height: 1.5;
}

.service-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-price {
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--gold-light);
	font-family: var(--font-heading);
}

.service-duration {
	font-size: 0.78rem;
	color: var(--text-dim);
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.service-select-btn {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border: 1px solid var(--border-subtle);
	padding: 0.45rem 0.9rem;
	border-radius: var(--radius-full);
	font-size: 0.82rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.service-card.selected .service-select-btn {
	background: var(--gold-gradient);
	color: #090c10;
	border-color: transparent;
}

/* Reviews Section */
.reviews-container {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
	.reviews-container {
		padding: 3rem;
	}
}

.reviews-score-hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-bottom: 3rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid var(--border-subtle);
}

@media (min-width: 768px) {
	.reviews-score-hero {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}

.score-number {
	font-size: 4rem;
	font-weight: 800;
	font-family: var(--font-heading);
	color: #fff;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.reviews-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 680px) {
	.reviews-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1040px) {
	.reviews-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.review-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform 0.2s;
}

.review-card:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.15);
}

.review-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.75rem;
}

.reviewer-name {
	font-weight: 700;
	font-size: 0.98rem;
	color: #fff;
}

.review-source {
	font-size: 0.72rem;
	color: var(--text-dim);
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.review-text {
	font-size: 0.9rem;
	color: #cbd5e1;
	font-style: italic;
	line-height: 1.55;
	margin-bottom: 1rem;
}

.review-date {
	font-size: 0.75rem;
	color: var(--text-dim);
}

/* Gallery Showcase */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}

.gallery-card {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 4/5;
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	group: hover;
}

.gallery-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-card-img {
	transform: scale(1.05);
}

.gallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(9, 12, 16, 0.9) 0%, rgba(9, 12, 16, 0.2) 60%, transparent 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.5rem;
}

.gallery-tag {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 0.25rem;
}

.gallery-title {
	font-size: 1.15rem;
	color: #fff;
}

/* Info & Hours / Contact Section */
.info-section-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 860px) {
	.info-section-grid {
		grid-template-columns: 1fr 1.1fr;
	}
}

.info-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 2rem;
}

.hours-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 1rem;
}

.hours-table tr {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-table tr.today {
	background: rgba(212, 175, 55, 0.1);
}

.hours-table td {
	padding: 0.75rem 0.5rem;
	font-size: 0.92rem;
}

.hours-table td.day {
	font-weight: 600;
	color: #fff;
}

.hours-table td.time {
	text-align: right;
	color: var(--text-muted);
}

.hours-table tr.today td.time {
	color: var(--gold-light);
	font-weight: 700;
}

.contact-box {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem;
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	text-decoration: none;
	color: var(--text);
	transition: all 0.2s;
}

.contact-item:hover {
	border-color: var(--gold);
	transform: translateX(4px);
}

.contact-icon-box {
	width: 42px;
	height: 42px;
	border-radius: var(--radius-sm);
	background: rgba(212, 175, 55, 0.12);
	color: var(--gold-light);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* Modals */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(5, 7, 10, 0.85);
	backdrop-filter: blur(10px);
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.modal-card {
	background: #151b27;
	border: 1px solid var(--border-gold);
	border-radius: var(--radius-lg);
	max-width: 600px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	padding: 2rem;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.2);
	position: relative;
}

.modal-close-btn {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--border-subtle);
	color: #fff;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.2rem;
	transition: all 0.2s;
}

.modal-close-btn:hover {
	background: var(--red);
	border-color: var(--red);
}

/* Form Styles */
.form-group {
	margin-bottom: 1.25rem;
}

.form-label {
	display: block;
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--text-muted);
	margin-bottom: 0.4rem;
}

.form-input, .form-textarea, .form-select {
	width: 100%;
	padding: 0.75rem 1rem;
	background: #0d1118;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	color: #fff;
	font-family: inherit;
	font-size: 0.95rem;
	transition: border-color 0.2s;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.slot-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.slot-btn {
	padding: 0.5rem 0.25rem;
	text-align: center;
	background: #0d1118;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-sm);
	color: var(--text-muted);
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
}

.slot-btn:hover {
	border-color: var(--gold);
	color: #fff;
}

.slot-btn.active {
	background: var(--gold-gradient);
	color: #090c10;
	border-color: transparent;
	font-weight: 700;
}

/* Footer */
.site-footer {
	background: #06080b;
	border-top: 1px solid var(--border-subtle);
	padding: 4rem 1.25rem 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	margin-bottom: 3rem;
}

@media (min-width: 768px) {
	.footer-grid {
		grid-template-columns: 2fr 1fr 1fr;
	}
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	text-align: center;
	color: var(--text-dim);
	font-size: 0.82rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

@media (min-width: 600px) {
	.footer-bottom {
		flex-direction: row;
		justify-content: space-between;
	}
}

/* Admin Dashboard Drawer */
.admin-badge-toggle {
	position: fixed;
	bottom: 15px;
	right: 15px;
	z-index: 95;
	background: rgba(24, 31, 46, 0.9);
	backdrop-filter: blur(10px);
	border: 1px solid var(--border-subtle);
	color: var(--text-dim);
	padding: 0.4rem 0.8rem;
	border-radius: var(--radius-full);
	font-size: 0.75rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	transition: all 0.2s;
}

.admin-badge-toggle:hover {
	color: #fff;
	border-color: var(--gold);
}

/* Mobile Drawer */
.mobile-nav-drawer {
	position: fixed;
	top: 72px;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(9, 12, 16, 0.98);
	backdrop-filter: blur(20px);
	z-index: 99;
	padding: 2rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	border-top: 1px solid var(--border-subtle);
}

.mobile-nav-link {
	font-size: 1.25rem;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
