/* ============================================================
   LEMED SPA — Insights Page
   Blog / articles / Instagram feed
   ============================================================ */


/* ===== Base ===== */

body {
	background: #0a0a0c;
	overflow-x: hidden;
}

body.is-preload .ins-banner__content,
body.is-preload .ins-nav {
	opacity: 0;
}


/* ===== Fade-In ===== */

.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.is-visible {
	opacity: 1;
	transform: translateY(0);
}


/* ===== Navigation ===== */

.ins-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 1.5rem 2.5rem;
	z-index: 100;
	transition: opacity 1s ease 0.5s;
}

.ins-nav__back {
	font-family: 'Inter', sans-serif;
	font-size: 0.75rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.15rem;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	border-bottom: none !important;
	transition: color 0.3s ease;
}

.ins-nav__back:hover {
	color: #C5A55A;
}


/* ===== Banner ===== */

.ins-banner {
	padding: 10rem 2rem 5rem;
	background: #0a0a0c;
	text-align: center;
}

.ins-banner__content {
	max-width: 700px;
	margin: 0 auto;
	transition: opacity 1.5s ease 0.3s;
}

.ins-banner__content h1 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 400;
	letter-spacing: 0.35rem;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.ins-banner__content p {
	font-family: 'Inter', sans-serif;
	font-size: clamp(0.8rem, 1.3vw, 0.95rem);
	font-weight: 200;
	letter-spacing: 0.15rem;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.8;
}


/* ===== Sections ===== */

.ins-section {
	padding: 5rem 2rem;
	background: #0a0a0c;
}

.ins-section--dark {
	background: #070709;
}

.ins-container {
	max-width: 1000px;
	margin: 0 auto;
}


/* ===== Label ===== */

.ins-label {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 0.65rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	color: #C5A55A;
	margin-bottom: 1rem;
}


/* ===== Section Header ===== */

.ins-header {
	text-align: center;
	margin-bottom: 3rem;
}

.ins-header h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0.05rem;
	margin-bottom: 0.75rem;
}

.ins-header h2 em {
	color: #C5A55A;
}

.ins-header p {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.5);
	max-width: 500px;
	margin: 0 auto;
	line-height: 1.7;
}


/* ===== Featured Article ===== */

.ins-featured {
	padding: 3.5rem;
	border: 1px solid rgba(197, 165, 90, 0.2);
	border-radius: 2px;
	background: rgba(197, 165, 90, 0.03);
	position: relative;
}

.ins-featured__badge {
	position: absolute;
	top: -0.6rem;
	left: 2rem;
	font-family: 'Inter', sans-serif;
	font-size: 0.55rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15rem;
	color: #0a0a0c;
	background: #C5A55A;
	padding: 0.25rem 0.75rem;
	border-radius: 2px;
}

.ins-featured h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0.02rem;
	line-height: 1.5;
	margin-bottom: 1.25rem;
}

.ins-featured h2 em {
	color: #C5A55A;
}

.ins-featured p {
	font-size: 0.85rem;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 1.25rem;
}

.ins-featured__meta {
	font-family: 'Inter', sans-serif;
	font-size: 0.6rem;
	text-transform: uppercase;
	letter-spacing: 0.12rem;
	color: rgba(197, 165, 90, 0.6);
}


/* ===== Article Grid ===== */

.ins-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.ins-card {
	padding: 2rem 2.25rem;
	border: 1px solid rgba(197, 165, 90, 0.1);
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.015);
	transition: border-color 0.3s ease, transform 0.3s ease;
	cursor: pointer;
}

.ins-card:hover {
	border-color: rgba(197, 165, 90, 0.3);
	transform: translateY(-3px);
}

.ins-card__tag {
	font-family: 'Inter', sans-serif;
	font-size: 0.55rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.12rem;
	color: #C5A55A;
	margin-bottom: 0.75rem;
}

.ins-card h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1rem;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0.01rem;
	line-height: 1.5;
	margin-bottom: 0.75rem;
}

.ins-card p {
	font-size: 0.78rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 0.75rem;
}

.ins-card__meta {
	font-family: 'Inter', sans-serif;
	font-size: 0.55rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	color: rgba(255, 255, 255, 0.3);
}


/* ===== Instagram Section ===== */

.ins-instagram {
	text-align: center;
}

.ins-instagram__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin-bottom: 2rem;
}

.ins-instagram__placeholder {
	aspect-ratio: 1 / 1;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(197, 165, 90, 0.1);
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ins-instagram__placeholder .icon {
	font-size: 2rem;
	color: rgba(197, 165, 90, 0.2);
}

.ins-instagram__placeholder .icon:before {
	font-size: 2rem;
}

.ins-instagram__follow {
	font-family: 'Inter', sans-serif;
	font-size: 0.75rem;
	font-weight: 500;
	color: #C5A55A;
	text-decoration: none;
	border-bottom: none !important;
	letter-spacing: 0.05rem;
	transition: color 0.3s ease;
}

.ins-instagram__follow:hover {
	color: #d4b76e;
}


/* ===== CTA ===== */

.ins-cta {
	padding: 5rem 2rem;
	background: #070709;
	text-align: center;
}

.ins-cta h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.3rem, 2.5vw, 1.75rem);
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0.05rem;
	margin-bottom: 0.75rem;
}

.ins-cta h2 em {
	color: #C5A55A;
}

.ins-cta p {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.55);
	max-width: 450px;
	margin: 0 auto 2rem;
	line-height: 1.8;
}


/* ===== Footer ===== */

.ins-footer {
	padding: 2.5rem 2rem;
	text-align: center;
	background: #050507;
}

.ins-footer p {
	font-family: 'Inter', sans-serif;
	font-size: 0.6rem;
	text-transform: uppercase;
	letter-spacing: 0.15rem;
	color: rgba(255, 255, 255, 0.35);
	margin: 0;
}

.ins-footer a {
	color: rgba(197, 165, 90, 0.5);
	border-bottom: none;
}

.ins-footer a:hover {
	color: #C5A55A;
}


/* ===== Responsive ===== */

@media screen and (max-width: 768px) {
	.ins-grid {
		grid-template-columns: 1fr;
	}

	.ins-instagram__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ins-featured {
		padding: 2.5rem 2rem;
	}
}

@media screen and (max-width: 640px) {
	.ins-section {
		padding: 3.5rem 1.5rem;
	}

	.ins-banner {
		padding: 8rem 1.5rem 3rem;
	}

	.ins-card {
		padding: 1.5rem;
	}
}
