/**
 * Front Page Styles — Hero, collections preview, featured products,
 * social proof, brand story, testimonials, newsletter.
 *
 * @package SkyyRose_Flagship
 * @since   3.0.0
 */

/* ==================================================
   HERO — 100vh with orbs + sparkles
   ================================================== */

.front-page .hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	background: #0a0a0a;
}

.hero__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 0;
}

/* Floating gradient orbs */
.hero__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.35;
}

.hero__orb--1 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(183, 110, 121, 0.6) 0%, transparent 70%);
	top: 10%;
	left: 20%;
	animation: orbFloat1 12s ease-in-out infinite;
}

.hero__orb--2 {
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.5) 0%, transparent 70%);
	bottom: 15%;
	right: 15%;
	animation: orbFloat2 15s ease-in-out infinite;
}

.hero__orb--3 {
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(192, 192, 192, 0.4) 0%, transparent 70%);
	top: 50%;
	left: 60%;
	animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33%      { transform: translate(40px, -30px) scale(1.1); }
	66%      { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes orbFloat2 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33%      { transform: translate(-30px, 20px) scale(1.05); }
	66%      { transform: translate(25px, -15px) scale(0.9); }
}

@keyframes orbFloat3 {
	0%, 100% { transform: translate(0, 0); }
	50%      { transform: translate(-35px, 30px); }
}

/* Sparkle particles */
.hero__sparkles {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}

.hero__sparkle {
	position: absolute;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.8);
	animation: sparkleFloat 3s ease-out forwards;
	pointer-events: none;
}

@keyframes sparkleFloat {
	0%   { opacity: 0; transform: translateY(0) scale(0); }
	20%  { opacity: 1; transform: translateY(-10px) scale(1); }
	100% { opacity: 0; transform: translateY(-60px) scale(0.3); }
}

/* Hero content */
.hero__content {
	position: relative;
	z-index: 2;
	max-width: 700px;
	padding: 2rem;
}

/* ==================================================
   BRAND NAME — Animated Letter-by-Letter Reveal
   "SKYYROSE" in upscale script with staggered entrance
   ================================================== */

.hero__brand-name {
	font-family: 'Playfair Display', 'Georgia', serif;
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #fff;
	margin: 0 0 1.5rem;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: baseline;
}

.hero__brand-letter {
	display: inline-block;
	opacity: 0;
	transform: translateY(40px) scale(0.8);
	animation: letterReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	animation-delay: calc(var(--i, 0) * 0.1s + 0.3s);
}

.hero__brand-letter--rose {
	background: linear-gradient(135deg, #B76E79 0%, #D4AF37 60%, #B76E79 100%);
	background-size: 200% auto;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: letterReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards,
	           roseShimmer 4s ease-in-out infinite 1.5s;
	animation-delay: calc(var(--i, 0) * 0.1s + 0.3s), 1.5s;
}

@keyframes letterReveal {
	0% {
		opacity: 0;
		transform: translateY(40px) scale(0.8);
		filter: blur(4px);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
		filter: blur(0);
	}
}

@keyframes roseShimmer {
	0%, 100% { background-position: 0% center; }
	50%      { background-position: 100% center; }
}

/* Divider — Rose gold line + diamond */
.hero__divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin: 0 auto 1.5rem;
	max-width: 200px;
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards 1.2s;
}

.hero__divider-line {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--color-rose-gold, #B76E79), transparent);
}

.hero__divider-diamond {
	width: 8px;
	height: 8px;
	background: var(--color-rose-gold, #B76E79);
	transform: rotate(45deg);
	flex-shrink: 0;
}

/* Tagline */
.hero__tagline-main {
	font-family: var(--font-body, 'Inter', sans-serif);
	font-size: clamp(1rem, 2vw, 1.25rem);
	font-weight: 300;
	color: rgba(255, 255, 255, 0.65);
	letter-spacing: 0.06em;
	margin: 0 0 1.5rem;
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards 1.4s;
}

/* Rotating collection text */
.hero__rotating {
	margin-bottom: 1.5rem;
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards 1.6s;
}

.hero__rotating-label {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
	margin-right: 0.5rem;
}

.hero__rotating-text {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--color-rose-gold, #B76E79);
	display: inline-block;
	min-width: 200px;
	transition: opacity 0.3s ease;
}

/* Subtitle */
.hero__subtitle {
	font-family: var(--font-body, 'Inter', sans-serif);
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.7;
	max-width: 500px;
	margin: 0 auto 2rem;
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards 1.8s;
}

/* CTA buttons */
.hero__cta {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards 2s;
}

.btn--primary {
	background: var(--gradient-rose-gold, linear-gradient(135deg, #B76E79, #D4AF37));
	color: #fff;
}

.btn--outline {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.8);
}

.btn--outline:hover {
	border-color: var(--color-rose-gold, #B76E79);
	color: #fff;
	background: rgba(183, 110, 121, 0.1);
}

/* Scroll indicator */
.hero__scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	width: 24px;
	height: 40px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards 2.5s;
}

.hero__scroll-indicator::after {
	content: '';
	position: absolute;
	top: 6px;
	left: 50%;
	width: 4px;
	height: 8px;
	background: var(--color-rose-gold, #B76E79);
	border-radius: 2px;
	transform: translateX(-50%);
	animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
	0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
	50%      { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

@keyframes fadeInUp {
	0% { opacity: 0; transform: translateY(20px); }
	100% { opacity: 1; transform: translateY(0); }
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 30px;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 2rem;
}

.hero__title {
	font-family: var(--font-heading, 'Playfair Display', serif);
	font-size: clamp(2.5rem, 6vw, 5rem);
	font-weight: 700;
	line-height: 1.1;
	color: #fff;
	margin: 0 0 0.75rem;
	letter-spacing: -0.02em;
}

.hero__title .text-gradient {
	background: linear-gradient(135deg, #B76E79 0%, #D4AF37 50%, #C0C0C0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero__tagline {
	font-family: var(--font-body, 'Inter', sans-serif);
	font-size: clamp(1rem, 2vw, 1.25rem);
	font-weight: 300;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0 2.5rem;
	letter-spacing: 0.04em;
	line-height: 1.6;
}

.hero__cta-group {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* ==================================================
   SOCIAL PROOF BAR
   ================================================== */

.social-proof-bar {
	display: flex;
	justify-content: center;
	gap: 3rem;
	padding: 2rem 1rem;
	background: rgba(17, 17, 17, 0.6);
	border-top: 1px solid rgba(255, 255, 255, 0.04);
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.social-proof-bar__item {
	text-align: center;
}

.social-proof-bar__number {
	font-family: var(--font-heading, 'Playfair Display', serif);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--color-rose-gold, #B76E79);
	display: block;
	margin-bottom: 0.25rem;
}

.social-proof-bar__label {
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
}

/* ==================================================
   COLLECTIONS SHOWCASE
   ================================================== */

.collections__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.collections__card {
	position: relative;
	background: var(--color-card-bg, #111);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.collections__card:hover {
	transform: translateY(-6px);
	border-color: rgba(183, 110, 121, 0.3);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(183, 110, 121, 0.08);
}

.collections__card-image {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
	display: block;
}

.collections__card-content {
	padding: 1.5rem;
}

.collections__card-name {
	font-family: var(--font-heading, 'Playfair Display', serif);
	font-size: 1.375rem;
	color: #fff;
	margin: 0 0 0.5rem;
}

.collections__card-desc {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.6;
	margin: 0 0 1.25rem;
}

.collections__card-count {
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-rose-gold, #B76E79);
}

/* ==================================================
   VALUE PROPOSITIONS
   ================================================== */

.value-props__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.value-prop {
	text-align: center;
	padding: 2rem 1.5rem;
}

.value-prop__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(183, 110, 121, 0.1);
	border: 1px solid rgba(183, 110, 121, 0.2);
	margin-bottom: 1.25rem;
	color: var(--color-rose-gold, #B76E79);
}

.value-prop__title {
	font-family: var(--font-heading, 'Playfair Display', serif);
	font-size: 1.125rem;
	color: #fff;
	margin: 0 0 0.5rem;
}

.value-prop__desc {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.65;
	margin: 0;
}

/* ==================================================
   FEATURED PRODUCTS
   ================================================== */

.featured-products__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.featured-product {
	background: var(--color-card-bg, #111);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.4s ease;
}

.featured-product:hover {
	transform: translateY(-4px);
	border-color: rgba(183, 110, 121, 0.2);
}

.featured-product__image {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
	display: block;
}

.featured-product__info {
	padding: 1rem 1.25rem;
}

.featured-product__name {
	font-size: 0.9rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 0.25rem;
}

.featured-product__price {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--color-rose-gold, #B76E79);
	margin: 0;
}

/* ==================================================
   NEWSLETTER
   ================================================== */

.newsletter-section {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	padding: 4rem 1.5rem;
}

.newsletter-form {
	display: flex;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.newsletter-form input[type="email"] {
	flex: 1;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input[type="email"]:focus {
	border-color: var(--color-rose-gold, #B76E79);
}

.newsletter-form button.success {
	background: #2ecc71;
}

/* ==================================================
   SCROLL REVEAL
   ================================================== */

.reveal-target {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
	            transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-target.revealed {
	opacity: 1;
	transform: translateY(0);
}

/* ==================================================
   RESPONSIVE
   ================================================== */

@media (max-width: 768px) {
	.hero__brand-name {
		font-size: clamp(2.5rem, 10vw, 3.5rem);
	}

	.hero__cta {
		flex-direction: column;
		align-items: center;
	}

	.social-proof-bar {
		gap: 1.5rem;
		flex-wrap: wrap;
	}

	.hero__cta-group {
		flex-direction: column;
		align-items: center;
	}

	.collections__grid {
		grid-template-columns: 1fr;
	}

	.newsletter-form {
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.social-proof-bar__number {
		font-size: 1.5rem;
	}

	.hero__orb--1,
	.hero__orb--2,
	.hero__orb--3 {
		width: 200px;
		height: 200px;
	}
}

/* ==================================================
   REDUCED MOTION
   ================================================== */

@media (prefers-reduced-motion: reduce) {
	.hero__orb,
	.hero__sparkle,
	.hero__scroll-indicator::after {
		animation: none;
	}

	.hero__brand-letter {
		opacity: 1;
		transform: none;
		animation: none;
	}

	.hero__divider,
	.hero__tagline-main,
	.hero__rotating,
	.hero__subtitle,
	.hero__cta,
	.hero__scroll-indicator {
		opacity: 1;
		transform: none;
		animation: none;
	}

	.reveal-target {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ==================================================
   SECTION HEADERS — Shared across all homepage sections
   ================================================== */

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

.section-header__label {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-rose-gold, #B76E79);
	margin-bottom: 0.75rem;
}

.section-header__title {
	font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.75rem;
	letter-spacing: -0.02em;
}

.section-header__subtitle {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.65;
	margin: 0;
}

/* ==================================================
   SOCIAL PROOF — Stat counters (matching front-page.php classes)
   ================================================== */

.social-proof {
	background: rgba(17, 17, 17, 0.6);
	border-top: 1px solid rgba(255, 255, 255, 0.04);
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	padding: 2.5rem 1rem;
}

.social-proof__inner {
	display: flex;
	justify-content: center;
	gap: clamp(2rem, 5vw, 4rem);
	max-width: 1000px;
	margin: 0 auto;
	flex-wrap: wrap;
}

.social-proof__stat {
	text-align: center;
	min-width: 120px;
}

.social-proof__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 0.5rem;
	color: var(--color-rose-gold, #B76E79);
	opacity: 0.7;
}

.social-proof__number {
	font-family: var(--font-heading, 'Playfair Display', serif);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--color-rose-gold, #B76E79);
	display: block;
	margin-bottom: 0.25rem;
}

.social-proof__label {
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
}

/* ==================================================
   COLLECTIONS — Section wrapper
   ================================================== */

.collections {
	padding: 5rem 0;
}

.featured {
	padding: 5rem 0;
	background: rgba(17, 17, 17, 0.3);
}

.featured__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* ==================================================
   WHY SKYYROSE — Value proposition cards
   ================================================== */

.why-skyyrose {
	padding: 5rem 0;
}

.why-skyyrose__header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 3rem;
	padding: 0 1.5rem;
}

.why-skyyrose__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.why-skyyrose__card {
	position: relative;
	background: rgba(17, 17, 17, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	overflow: hidden;
	transition: border-color 0.4s ease, transform 0.4s ease;
}

.why-skyyrose__card:hover {
	border-color: rgba(183, 110, 121, 0.25);
	transform: translateY(-4px);
}

.why-skyyrose__card-glow {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at center, rgba(183, 110, 121, 0.06) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.why-skyyrose__card:hover .why-skyyrose__card-glow { opacity: 1; }

.why-skyyrose__card-number {
	font-family: var(--font-heading, 'Playfair Display', serif);
	font-size: 2rem;
	font-weight: 700;
	color: rgba(183, 110, 121, 0.2);
	margin-bottom: 0.5rem;
}

.why-skyyrose__card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin: 0 auto 1rem;
	border-radius: 50%;
	background: rgba(183, 110, 121, 0.1);
	border: 1px solid rgba(183, 110, 121, 0.2);
	color: var(--color-rose-gold, #B76E79);
}

.why-skyyrose__card-title {
	font-family: var(--font-heading, 'Playfair Display', serif);
	font-size: 1.125rem;
	color: #fff;
	margin: 0 0 0.5rem;
}

.why-skyyrose__card-text {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.65;
	margin: 0;
}

/* ==================================================
   BRAND STORY — Pull quote + stats
   ================================================== */

.brand-story {
	position: relative;
	padding: 6rem 0;
	overflow: hidden;
}

.brand-story__bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(183, 110, 121, 0.05) 0%, rgba(212, 175, 55, 0.03) 100%);
	pointer-events: none;
}

.brand-story__content {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 3vw, 2.5rem);
}

.brand-story__visual {
	position: relative;
}

.brand-story__heading {
	font-family: var(--font-heading, 'Playfair Display', serif);
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 1.5rem;
}

.brand-story__text {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.75;
	margin: 0 0 2rem;
}

.brand-story__pullquote {
	font-family: var(--font-heading, 'Playfair Display', serif);
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-style: italic;
	color: rgba(255, 255, 255, 0.7);
	border-left: 3px solid var(--color-rose-gold, #B76E79);
	padding-left: 1.5rem;
	margin: 2rem 0;
	line-height: 1.5;
}

.brand-story__stats {
	display: flex;
	gap: 2rem;
	margin-top: 2rem;
}

.brand-story__stat { text-align: center; }

.brand-story__stat-number {
	font-family: var(--font-heading, 'Playfair Display', serif);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--color-rose-gold, #B76E79);
	display: block;
}

.brand-story__stat-label {
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
}

/* ==================================================
   INSTAGRAM FEED
   ================================================== */

.instagram-feed {
	padding: 5rem 0;
}

.instagram-feed__header {
	text-align: center;
	margin-bottom: 2rem;
}

.instagram-feed__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 4px;
	max-width: 1200px;
	margin: 0 auto;
}

.instagram-feed__item {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	cursor: pointer;
}

.instagram-feed__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-feed__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.instagram-feed__item:hover .instagram-feed__image {
	transform: scale(1.08);
}

.instagram-feed__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 0.5rem;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.instagram-feed__item:hover .instagram-feed__overlay { opacity: 1; }

.instagram-feed__stat {
	font-size: 0.8rem;
	font-weight: 600;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.instagram-feed__placeholder-icon {
	color: rgba(255, 255, 255, 0.2);
}

.instagram-feed__cta {
	text-align: center;
	margin-top: 2rem;
}

/* ==================================================
   PRESS MENTIONS
   ================================================== */

.press {
	padding: 3rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.press__inner {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
	padding: 0 1.5rem;
}

.press__label {
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.3);
	margin-bottom: 1.5rem;
}

.press__logos {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(2rem, 5vw, 4rem);
	flex-wrap: wrap;
}

.press__logo {
	font-family: var(--font-heading, 'Playfair Display', serif);
	font-size: 1.125rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.2);
	letter-spacing: 0.05em;
	transition: color 0.3s ease;
}

.press__logo:hover { color: rgba(255, 255, 255, 0.5); }

/* ==================================================
   TESTIMONIALS
   ================================================== */

.testimonials {
	padding: 5rem 0;
	background: rgba(17, 17, 17, 0.3);
}

.testimonials__header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 3rem;
	padding: 0 1.5rem;
}

.testimonials__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.testimonials__card {
	background: rgba(17, 17, 17, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	overflow: hidden;
	transition: border-color 0.4s ease, transform 0.4s ease;
}

.testimonials__card:hover {
	border-color: rgba(183, 110, 121, 0.2);
	transform: translateY(-4px);
}

.testimonials__card-inner { padding: 2rem; }

.testimonials__stars {
	display: flex;
	gap: 0.15rem;
	margin-bottom: 1rem;
}

.testimonials__star { color: #D4AF37; }

.testimonials__quote {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.65;
	margin: 0 0 1.5rem;
	font-style: italic;
}

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

.testimonials__avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(183, 110, 121, 0.3);
}

.testimonials__author-info { flex: 1; }

.testimonials__name {
	font-size: 0.875rem;
	font-weight: 600;
	color: #fff;
	margin: 0;
}

.testimonials__location {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.4);
	margin: 0;
}

.testimonials__verified {
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #2ecc71;
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.testimonials__product {
	font-size: 0.75rem;
	color: var(--color-rose-gold, #B76E79);
	margin-top: 0.25rem;
}

/* ==================================================
   RESPONSIVE — New sections
   ================================================== */

@media (max-width: 768px) {
	.brand-story__content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.brand-story__stats { flex-wrap: wrap; }
	.social-proof__inner { gap: 1.5rem; }
	.instagram-feed__grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.testimonials__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.instagram-feed__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (prefers-reduced-motion: reduce) {
	.instagram-feed__image,
	.why-skyyrose__card,
	.testimonials__card,
	.why-skyyrose__card-glow {
		transition: none;
	}

	.hero__orb {
		animation: none;
	}

	.hero__sparkle {
		animation: none;
	}

	.js-scroll-reveal {
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}
