@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

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

html, body {
	width: 100%;
	min-height: 100%;
	background: #000;
	overflow-x: hidden;
	font-family: 'Inter', system-ui, sans-serif;
	color: #f4e8ee;
}

canvas {
	position: fixed;
	top: 0; left: 0;
	width: 100vw; height: 100vh;
	z-index: 0;
}

#scroll-container {
	position: relative;
	z-index: 1;
	pointer-events: none;
	will-change: transform;
}

.section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 40px;
	pointer-events: none;
}

.section * { pointer-events: auto; }

.hero {
	min-height: 110vh;
	flex-direction: column;
	gap: 20px;
	text-align: center;
	justify-content: flex-start;
	padding-top: 6vh;
}

.hero-tag {
	font-size: 11px;
	letter-spacing: 4px;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(30px);
	color: var(--color-label, rgba(230, 180, 210, 0.85));
	font-weight: 500;
	text-shadow: 0 1px 16px rgba(0,0,0,0.5);
}

.hero h1 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(48px, 8vw, 110px);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: -1px;
	opacity: 0;
	transform: translateY(40px);
	color: var(--color-heading, #fcf0f6);
	text-shadow: 0 2px 30px rgba(0,0,0,0.6), 0 0px 80px rgba(0,0,0,0.4);
}

.hero h1 em {
	font-style: italic;
	color: var(--color-accent, rgba(245, 163, 199, 0.95));
	text-shadow: 0 0 30px rgba(245, 163, 199, 0.25), 0 0 60px rgba(245, 163, 199, 0.1);
}

.hero-sub {
	font-size: clamp(15px, 1.7vw, 20px);
	line-height: 1.65;
	max-width: 560px;
	opacity: 0;
	transform: translateY(30px);
	color: var(--color-body, rgba(248, 232, 240, 0.95));
	font-weight: 400;
	text-shadow: 0 1px 14px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 0, 0, 0.4);
	letter-spacing: 0.1px;
}

.wind-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 24px;
	border: 1px solid rgba(210, 170, 195, 0.25);
	border-radius: 32px;
	background: rgba(25, 15, 25, 0.35);
	backdrop-filter: blur(12px);
	color: var(--color-accent, rgba(245, 163, 199, 0.9));
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.4s;
	opacity: 0;
	transform: translateY(20px);
}

.wind-btn:hover {
	background: rgba(65, 40, 60, 0.5);
	border-color: rgba(210, 170, 195, 0.5);
	transform: translateY(-2px) !important;
}

.wind-btn svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.scroll-hint {
	position: relative;
	margin-top: auto;
	margin-bottom: 12vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	opacity: 0;
	transform: translateY(0);
}

html {
	scroll-snap-type: y proximity;
}

.section {
	scroll-snap-align: start;
}

.scroll-hint span {
	font-size: 10px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--color-label, rgba(245, 160, 200, 0.9));
	text-shadow: 0 1px 12px rgba(0,0,0,0.7), 0 0 24px rgba(0,0,0,0.5);
}

.scroll-line {
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, rgba(210, 160, 190, 0.5), transparent);
	animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
	0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
	50% { opacity: 1; transform: scaleY(1); }
}

.manifesto {
	flex-direction: column;
	gap: 40px;
	text-align: center;
}

.manifesto-label {
	font-size: 10px;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--color-label, rgba(230, 180, 210, 0.55));
	opacity: 0;
	transform: translateY(20px);
	text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

.manifesto h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(28px, 4vw, 56px);
	font-weight: 400;
	line-height: 1.3;
	max-width: 800px;
	opacity: 0;
	transform: translateY(40px);
	color: var(--color-heading, rgba(250, 235, 245, 0.97));
	text-shadow: 0 2px 30px rgba(0,0,0,0.7), 0 0 60px rgba(0,0,0,0.4);
}

.manifesto h2 em {
	font-style: italic;
	color: var(--color-accent, rgba(245, 163, 199, 0.95));
	text-shadow: 0 0 25px rgba(245, 163, 199, 0.2), 0 0 50px rgba(245, 163, 199, 0.08);
}

.pillars {
	flex-direction: column;
	gap: 60px;
}

.pillars-header {
	text-align: center;
	opacity: 0;
	transform: translateY(20px);
}

.pillars-header span {
	font-size: 12px;
	letter-spacing: 4px;
	text-transform: uppercase;
	font-weight: 600;
	color: rgba(245, 200, 220, 0.95);
	text-shadow: 0 1px 14px rgba(0, 0, 0, 0.6), 0 0 20px rgba(245, 163, 199, 0.25);
}

.pillar-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 960px;
	width: 100%;
}

@media (max-width: 768px) {
	.pillar-grid { grid-template-columns: 1fr; max-width: 400px; }
}

.pillar-card {
	border: 1px solid rgba(180, 140, 170, 0.18);
	border-radius: 16px;
	padding: 36px 28px;
	background: rgba(12, 6, 14, 0.78);
	backdrop-filter: blur(20px);
	opacity: 0;
	transform: translateY(40px);
	transition: border-color 0.4s, background 0.4s;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
}

.pillar-card:hover {
	border-color: rgba(180, 140, 170, 0.35);
	background: rgba(28, 14, 28, 0.78);
}

.pillar-num {
	font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
	font-size: 22px;
	font-weight: 400;
	color: rgba(245, 163, 199, 0.85);
	text-shadow: 0 0 20px rgba(245, 163, 199, 0.3);
	margin-bottom: 14px;
	display: inline-block;
	line-height: 1;
}

.pillar-card h3 {
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-size: clamp(34px, 3.6vw, 46px);
	font-weight: 600;
	letter-spacing: -0.6px;
	margin-bottom: 16px;
	color: #ffffff;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.pillar-card p {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(235, 215, 225, 0.88);
	font-weight: 400;
}

.stats-section {
	flex-direction: column;
	gap: 50px;
	text-align: center;
}

.stats-label {
	font-size: 10px;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--color-label, rgba(230, 180, 210, 0.55));
	opacity: 0;
	transform: translateY(20px);
	text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

.stats-grid {
	display: flex;
	gap: 60px;
	flex-wrap: wrap;
	justify-content: center;
}

.stat-item {
	opacity: 0;
	transform: translateY(30px);
	text-align: center;
}

.stat-num {
	font-family: 'Playfair Display', serif;
	font-size: clamp(40px, 5vw, 64px);
	font-weight: 400;
	color: var(--color-accent, rgba(250, 130, 185, 1));
	line-height: 1;
	text-shadow: 0 2px 24px rgba(0,0,0,0.6), 0 0 40px rgba(245, 163, 199, 0.15);
}

.stat-unit {
	font-size: 14px;
	letter-spacing: 1px;
	color: var(--color-body, rgba(230, 200, 215, 0.55));
	margin-top: 8px;
	font-weight: 300;
}

.quote-section {
	flex-direction: column;
	gap: 20px;
	text-align: center;
	min-height: 80vh;
}

.quote-section blockquote {
	font-family: 'Playfair Display', serif;
	font-size: clamp(22px, 3.5vw, 42px);
	font-weight: 400;
	font-style: italic;
	line-height: 1.4;
	max-width: 720px;
	color: var(--color-heading, rgba(255, 240, 250, 0.95));
	opacity: 0;
	transform: translateY(40px);
	text-shadow: 0 2px 30px rgba(0,0,0,0.7), 0 0 60px rgba(0,0,0,0.4);
}

.quote-attr {
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--color-label, rgba(230, 180, 210, 0.45));
	opacity: 0;
	transform: translateY(20px);
}

.cta-section {
	flex-direction: column;
	gap: 30px;
	text-align: center;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 0 40px;
	margin-bottom: 0;
}

.cta-section h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(48px, 7.5vw, 96px);
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: -1.5px;
	opacity: 0;
	transform: translateY(30px);
	text-align: center;
}

.cta-section h2 em {
	font-style: italic;
	color: var(--color-accent, rgba(250, 130, 185, 1));
	text-shadow: 0 0 30px rgba(245, 163, 199, 0.3), 0 0 60px rgba(245, 163, 199, 0.12);
}

.cta-sub {
	font-size: 18px;
	color: var(--color-body, rgba(235, 215, 225, 0.85));
	max-width: 520px;
	line-height: 1.65;
	font-weight: 400;
	letter-spacing: 0.1px;
	opacity: 0;
	transform: translateY(20px);
}

.cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 36px;
	border: 1px solid rgba(210, 170, 195, 0.35);
	border-radius: 40px;
	background: rgba(50, 30, 50, 0.4);
	color: var(--color-accent, rgba(245, 163, 199, 0.95));
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.4s;
	opacity: 0;
	transform: translateY(20px);
	backdrop-filter: blur(10px);
}

.cta-btn:hover {
	background: rgba(80, 50, 75, 0.5);
	border-color: rgba(210, 170, 195, 0.6);
	transform: translateY(-2px) !important;
}

/* ── Hero pocket subline ── */
.hero-pocket {
	display: inline-block;
	margin-top: 10px;
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-weight: 400;
	font-size: clamp(24px, 3.4vw, 44px);
	line-height: 1.1;
	color: #fcf0f6;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.7), 0 0 60px rgba(0, 0, 0, 0.5);
}

/* ── Store badges (App Store / Google Play) ── */
.hero-cta-row {
	display: inline-flex;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 24px;
	opacity: 0;
	transform: translateY(20px);
}

.store-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 22px;
	border-radius: 14px;
	background: rgba(18, 10, 18, 0.65);
	border: 1px solid rgba(210, 170, 195, 0.32);
	color: rgba(255, 235, 245, 0.96);
	text-decoration: none;
	transition: all 0.4s;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 36px rgba(245, 163, 199, 0.08);
	min-width: 180px;
}

.store-btn:hover {
	background: rgba(50, 25, 45, 0.7);
	border-color: rgba(245, 163, 199, 0.55);
	transform: translateY(-2px);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5), 0 0 50px rgba(245, 163, 199, 0.18);
}

.store-btn svg {
	width: 26px;
	height: 26px;
	fill: rgba(245, 163, 199, 0.95);
	flex-shrink: 0;
}

.store-btn span {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.05;
}

.store-btn small {
	font-size: 9px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(230, 200, 215, 0.6);
	font-weight: 500;
	margin-bottom: 3px;
}

.store-btn strong {
	font-family: 'Playfair Display', serif;
	font-weight: 400;
	font-size: 17px;
	letter-spacing: 0.3px;
	color: #fcf2f8;
}

/* ── CTA fine print (free, rating, no ads) ── */
.cta-fine {
	margin-top: 22px;
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(230, 200, 215, 0.45);
	font-weight: 500;
	opacity: 0;
	transform: translateY(20px);
}

.scroll-cue {
	margin-top: 64px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	opacity: 0;
	transform: translateY(20px);
	user-select: none;
}

.scroll-cue-eyebrow {
	font-size: 10px;
	letter-spacing: 4px;
	text-transform: uppercase;
	font-weight: 600;
	color: rgba(245, 200, 220, 0.55);
}

.scroll-cue-label {
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-weight: 500;
	font-size: clamp(28px, 3.4vw, 40px);
	line-height: 1.25;
	padding-bottom: 0.12em;
	letter-spacing: -0.5px;
	color: #ffffff;
	background: linear-gradient(
		100deg,
		#ffffff 0%,
		#ffffff 40%,
		rgba(245, 200, 220, 1) 50%,
		#ffffff 60%,
		#ffffff 100%
	);
	background-size: 250% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: scrollCueShimmer 5s ease-in-out infinite;
	text-shadow: 0 0 30px rgba(245, 200, 220, 0.15);
	position: relative;
}

.scroll-cue-period {
	color: rgba(245, 163, 199, 1);
	-webkit-text-fill-color: rgba(245, 163, 199, 1);
}

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

.scroll-cue-track {
	position: relative;
	display: block;
	width: 1px;
	height: 56px;
	background: linear-gradient(
		180deg,
		rgba(245, 200, 220, 0) 0%,
		rgba(245, 200, 220, 0.5) 30%,
		rgba(245, 163, 199, 0.7) 70%,
		rgba(245, 200, 220, 0) 100%
	);
	overflow: hidden;
}

.scroll-cue-dot {
	position: absolute;
	left: 50%;
	top: 0;
	width: 6px;
	height: 6px;
	margin-left: -3px;
	margin-top: -3px;
	border-radius: 50%;
	background: rgba(250, 220, 235, 1);
	box-shadow: 0 0 12px rgba(245, 200, 220, 1), 0 0 24px rgba(245, 163, 199, 0.6);
	animation: scrollCueDrop 2.4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scrollCueDrop {
	0%   { top: 0;    opacity: 0; }
	15%  { opacity: 1; }
	85%  { opacity: 1; }
	100% { top: 100%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
	.scroll-cue-dot { animation: none; opacity: 0.9; top: 50%; }
	.scroll-cue-label { animation: none; background: none; -webkit-text-fill-color: #ffffff; color: #ffffff; }
}

.footer {
	min-height: 0;
	padding: 0;
	display: none;
}

.site-footer {
	position: relative;
	z-index: 2;
	border-top: 1px solid rgba(180, 140, 170, 0.08);
	background: #000000;
	padding: 60px 40px 40px;
	margin-top: 0;
}

.site-footer-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.sf-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

@media (max-width: 768px) {
	.sf-links { grid-template-columns: repeat(2, 1fr); gap: 30px; }
	.site-footer-inner { gap: 56px; }
}

@media (max-width: 480px) {
	.sf-links { grid-template-columns: 1fr; }
}

.sf-invite {
	max-width: 880px;
}

.sf-invite-eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 10px;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--color-label, rgba(230, 180, 210, 0.8));
	font-weight: 600;
	margin-bottom: 36px;
}

.sf-invite-eyebrow-line {
	display: inline-block;
	width: 36px;
	height: 1px;
	background: linear-gradient(90deg, rgba(245, 163, 199, 0.9), rgba(245, 163, 199, 0));
	animation: sfEyebrowPulse 3.2s ease-in-out infinite;
	transform-origin: left center;
}

@keyframes sfEyebrowPulse {
	0%, 100% { transform: scaleX(1); opacity: 0.6; }
	50%      { transform: scaleX(1.6); opacity: 1; }
}

.sf-invite-headline {
	font-family: 'Playfair Display', serif;
	font-size: clamp(40px, 7vw, 88px);
	line-height: 1.05;
	font-weight: 900;
	letter-spacing: -2px;
	margin: 0;
	cursor: default;
	color: #ffffff;
}

.sf-invite-headline em {
	font-style: italic;
	font-weight: 400;
	color: inherit;
}

.sf-invite-char {
	display: inline-block;
	color: #ffffff;
	animation: sfColorWave 5.5s ease-in-out infinite;
	animation-delay: calc(var(--i, 0) * 60ms);
	will-change: transform, color;
}

@keyframes sfColorWave {
	0%, 100% { color: #ffffff; }
	50%      { color: rgba(245, 200, 220, 1); }
}

.sf-invite-headline:hover .sf-invite-char {
	animation: sfBounce 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
	animation-delay: calc(var(--i, 0) * 35ms);
	color: rgba(250, 210, 225, 1);
}

@keyframes sfBounce {
	0%   { transform: translateY(0); }
	40%  { transform: translateY(-12px); }
	70%  { transform: translateY(2px); }
	100% { transform: translateY(0); }
}

.sf-invite-cta {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 14px;
	line-height: 1.6;
	font-weight: 500;
	letter-spacing: 0.4px;
	margin: 32px 0 0;
	color: var(--color-body, rgba(230, 200, 215, 0.7));
	white-space: nowrap;
}

.sf-invite-arrow {
	display: inline-block;
	margin-left: 8px;
	font-style: normal;
	font-weight: 700;
	color: var(--color-accent, rgba(245, 163, 199, 1));
	transform: translateY(0);
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.sf-invite:hover .sf-invite-arrow { transform: translateY(6px); }

.sf-invite-eyebrow,
.sf-invite-headline,
.sf-invite-cta {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.sf-invite-headline { transition-delay: 0.12s; }
.sf-invite-cta { transition-delay: 0.28s; }

.sf-invite.is-visible .sf-invite-eyebrow,
.sf-invite.is-visible .sf-invite-headline,
.sf-invite.is-visible .sf-invite-cta {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 768px) {
	.sf-invite-eyebrow { margin-bottom: 28px; }
	.sf-invite-cta { white-space: normal; margin-top: 24px; }
}

@media (prefers-reduced-motion: reduce) {
	.sf-invite-headline,
	.sf-invite-eyebrow-line,
	.sf-invite-char,
	.sf-invite-headline:hover .sf-invite-char { animation: none; }
	.sf-invite-eyebrow,
	.sf-invite-headline,
	.sf-invite-cta { opacity: 1; transform: none; transition: none; }
	.sf-invite-arrow, .sf-invite:hover .sf-invite-arrow { transform: none; transition: none; }
}

.sf-col-title {
	font-size: 12px;
	letter-spacing: 3.5px;
	text-transform: uppercase;
	color: var(--color-label, rgba(230, 180, 210, 0.6));
	margin-bottom: 22px;
	font-weight: 600;
}

.sf-col a {
	position: relative;
	display: block;
	width: max-content;
	max-width: 100%;
	font-size: 16px;
	color: var(--color-body, rgba(230, 200, 215, 0.7));
	text-decoration: none;
	margin-bottom: 14px;
	font-weight: 400;
	letter-spacing: 0.2px;
	transition: color 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.sf-col a::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 1px;
	background: linear-gradient(90deg, rgba(245, 200, 220, 0.9), rgba(245, 163, 199, 1));
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.sf-col a:hover {
	color: #ffffff;
	transform: translateX(6px);
}

.sf-col a:hover::before {
	transform: scaleX(1);
	transform-origin: left center;
}

.sf-bottom {
	max-width: 1100px;
	margin: 40px auto 0;
	padding-top: 24px;
	border-top: 1px solid rgba(180, 140, 170, 0.06);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.sf-copy {
	font-size: 11px;
	color: var(--color-body, rgba(230, 200, 215, 0.25));
	letter-spacing: 0.5px;
}

.sf-socials {
	display: flex;
	gap: 18px;
}

.sf-socials a {
	position: relative;
	font-size: 12px;
	color: var(--color-body, rgba(230, 200, 215, 0.5));
	text-decoration: none;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	font-weight: 500;
	transition: color 0.35s ease, transform 0.35s ease;
}

.sf-socials a:hover {
	color: #ffffff;
	transform: translateY(-2px);
}

/* ── Brandmark (FiFi × U) ──
   Inline brand wordmark. "FiFi" inherits the surrounding type so it sits as the
   visual core; "x" is a small italic multiplier in rose; "U" is italic serif,
   slightly smaller and tinted, reading as the companion-addon. Use:
   <span class="brandmark"><span class="bm-fifi">FiFi</span><span class="bm-x">x</span><span class="bm-u">U</span></span>
*/
.brandmark {
	display: inline;
	white-space: nowrap;
	font-style: normal;
	letter-spacing: inherit;
}
.brandmark .bm-fifi {
	font: inherit;
	color: inherit;
	letter-spacing: inherit;
}
.brandmark .bm-x {
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-weight: 400;
	font-size: 0.78em;
	color: rgba(245, 163, 199, 0.95);
	margin: 0 0.02em;
	text-shadow: 0 0 10px rgba(245, 163, 199, 0.4);
	letter-spacing: inherit;
}
.brandmark .bm-u {
	font-family: 'Playfair Display', serif;
	font-style: normal;
	font-weight: 400;
	font-size: 0.92em;
	color: inherit;
	letter-spacing: inherit;
}

/* ── Settings Panel ── */
.settings-panel {
	position: fixed;
	top: 50%;
	right: 24px;
	transform: translateY(-50%) translateX(12px) scale(0.95);
	width: 340px;
	max-height: 85vh;
	overflow-y: auto;
	background: rgba(16, 8, 14, 0.88);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(180, 140, 170, 0.15);
	border-radius: 16px;
	padding: 24px 22px;
	z-index: 300;
	pointer-events: auto;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.settings-panel.open {
	opacity: 1;
	transform: translateY(-50%) translateX(0) scale(1);
	visibility: visible;
}
.settings-panel::-webkit-scrollbar { width: 4px; }
.settings-panel::-webkit-scrollbar-track { background: transparent; }
.settings-panel::-webkit-scrollbar-thumb { background: rgba(180, 140, 170, 0.2); border-radius: 2px; }

.sp-section { margin-bottom: 18px; }
.sp-section-title {
	font-size: 9px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: rgba(210, 170, 195, 0.4);
	margin-bottom: 12px;
	padding-bottom: 6px;
	border-bottom: 1px solid rgba(180, 140, 170, 0.08);
}
.sp-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2px;
}
.sp-label {
	font-size: 11px;
	color: rgba(215, 185, 205, 0.55);
	font-weight: 400;
}
.sp-val {
	font-size: 10px;
	color: rgba(220, 180, 205, 0.5);
	min-width: 32px;
	text-align: right;
	font-variant-numeric: tabular-nums;
}
.sp-slider {
	width: 100%;
	margin-top: 0;
	margin-bottom: 12px;
	-webkit-appearance: none;
	appearance: none;
	height: 3px;
	border-radius: 2px;
	background: rgba(180, 140, 170, 0.12);
	outline: none;
}
.sp-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(210, 170, 195, 0.6);
	cursor: pointer;
	transition: background 0.2s;
}
.sp-slider::-webkit-slider-thumb:hover {
	background: rgba(220, 180, 210, 0.9);
}
.sp-toggle-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.sp-toggle {
	position: relative;
	width: 36px;
	height: 20px;
	border-radius: 10px;
	background: rgba(180, 140, 170, 0.15);
	cursor: pointer;
	transition: background 0.3s;
}
.sp-toggle.active { background: rgba(200, 120, 170, 0.5); }
.sp-toggle::after {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: rgba(220, 200, 210, 0.7);
	transition: transform 0.3s;
}
.sp-toggle.active::after { transform: translateX(16px); }

.sp-color-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.sp-color-input {
	-webkit-appearance: none;
	appearance: none;
	width: 32px;
	height: 20px;
	border: 1px solid rgba(180, 140, 170, 0.2);
	border-radius: 4px;
	background: none;
	cursor: pointer;
	padding: 0;
}
.sp-color-input::-webkit-color-swatch-wrapper { padding: 0; }
.sp-color-input::-webkit-color-swatch { border: none; border-radius: 3px; }

/* ── Nav (glass pane) ── */
.nav-float {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 68px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 40px;
	z-index: 100;
	pointer-events: auto;
	opacity: 0;
	background: rgba(15, 6, 14, 0.32);
	backdrop-filter: blur(22px) saturate(1.6);
	-webkit-backdrop-filter: blur(22px) saturate(1.6);
	border-bottom: 1px solid rgba(245, 163, 199, 0.12);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
	transition: opacity 0.6s, background 0.4s, border-color 0.4s;
}

.nav-float.visible { opacity: 1; }

.nav-logo {
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	color: var(--color-heading, rgba(250, 230, 245, 0.8));
	letter-spacing: 0.5px;
	pointer-events: auto;
	text-decoration: none;
}

.nav-links {
	display: flex;
	gap: 28px;
	pointer-events: auto;
}

.nav-links a {
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--color-body, rgba(230, 200, 215, 0.55));
	text-decoration: none;
	transition: color 0.3s;
	font-weight: 500;
}

.nav-links a:hover { color: var(--color-accent, rgba(245, 163, 199, 0.95)); }

.nav-hamburger {
	display: none;
	pointer-events: auto;
	width: 36px;
	height: 36px;
	background: rgba(25, 15, 25, 0.4);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(180, 140, 170, 0.15);
	border-radius: 8px;
	cursor: pointer;
	position: relative;
	flex-shrink: 0;
	transition: background 0.3s, border-color 0.3s;
}

.nav-hamburger:hover {
	background: rgba(65, 40, 60, 0.5);
	border-color: rgba(180, 140, 170, 0.3);
}

.nav-hamburger span {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 16px;
	height: 1.5px;
	background: var(--color-body, rgba(230, 200, 215, 0.7));
	border-radius: 1px;
	transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger span:nth-child(1) { top: 10px; }
.nav-hamburger span:nth-child(2) { top: 17px; }
.nav-hamburger span:nth-child(3) { top: 24px; }

.nav-hamburger.open span:nth-child(1) {
	transform: translateX(-50%) translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
	opacity: 0;
	transform: translateX(-50%);
}
.nav-hamburger.open span:nth-child(3) {
	transform: translateX(-50%) translateY(-7px) rotate(-45deg);
}

.settings-gear {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 200;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(25, 15, 25, 0.45);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(180, 140, 170, 0.15);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s, border-color 0.3s, transform 0.3s;
	pointer-events: auto;
	opacity: 0.5;
}
.settings-gear:hover {
	opacity: 1;
	background: rgba(65, 40, 60, 0.5);
	border-color: rgba(180, 140, 170, 0.3);
	transform: rotate(30deg);
}
.settings-gear.active {
	opacity: 1;
	border-color: rgba(210, 170, 195, 0.4);
}
.settings-gear svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: rgba(220, 180, 205, 0.6);
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.nav-mobile-overlay {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(24px);
	z-index: 99;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 32px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s;
	pointer-events: none;
}

.nav-mobile-overlay.open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.nav-mobile-overlay a {
	font-size: 14px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--color-body, rgba(230, 200, 215, 0.65));
	text-decoration: none;
	transition: color 0.3s, transform 0.3s;
	font-weight: 500;
	transform: translateY(10px);
	opacity: 0;
}

.nav-mobile-overlay.open a {
	opacity: 1;
	transform: translateY(0);
}

.nav-mobile-overlay.open a:nth-child(1) { transition-delay: 0.06s; }
.nav-mobile-overlay.open a:nth-child(2) { transition-delay: 0.12s; }
.nav-mobile-overlay.open a:nth-child(3) { transition-delay: 0.18s; }
.nav-mobile-overlay.open a:nth-child(4) { transition-delay: 0.24s; }

.nav-mobile-overlay a:hover {
	color: var(--color-accent, rgba(245, 163, 199, 0.95));
}

@media (max-width: 768px) {
	.nav-links { display: none; }
	.nav-hamburger { display: block; }
	.nav-float { padding: 0 24px; }
}

.progress-bar {
	position: fixed;
	top: 0; left: 0;
	height: 2px;
	background: rgba(245, 163, 199, 0.6);
	z-index: 200;
	width: 0;
	transition: width 0.1s linear;
}

.revealed {
	opacity: 1 !important;
	transform: translateY(0) !important;
	transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
				transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.25s !important; }
.delay-3 { transition-delay: 0.4s !important; }
.delay-4 { transition-delay: 0.55s !important; }
