/* FiFi sub-page — dark shell shared by /about, /lookbook, /contact, etc.
   Pairs with /web/css/styles.css (which provides .nav-float, .site-footer,
   .cta-btn, .revealed, .delay-N). */

@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;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ── Backdrop ────────────────────────────────────────── */
body.sub-page {
	position: relative;
	background:
		radial-gradient(ellipse at 20% 0%, rgba(72, 28, 60, 0.55), transparent 55%),
		radial-gradient(ellipse at 90% 90%, rgba(50, 20, 50, 0.5), transparent 60%),
		linear-gradient(180deg, #0b0509 0%, #100712 50%, #07040a 100%);
}

body.sub-page::before {
	content: '';
	position: fixed;
	inset: 0;
	background: radial-gradient(ellipse at 50% 30%, rgba(245, 163, 199, 0.04), transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.orb {
	position: fixed;
	border-radius: 50%;
	filter: blur(80px);
	pointer-events: none;
	z-index: 0;
	opacity: 0.6;
	will-change: transform;
}

.orb-rose {
	background: radial-gradient(circle, rgba(245, 163, 199, 0.5), transparent 70%);
}

.orb-plum {
	background: radial-gradient(circle, rgba(140, 60, 130, 0.4), transparent 70%);
}

.orb-mauve {
	background: radial-gradient(circle, rgba(180, 120, 170, 0.35), transparent 70%);
}

/* ── Page shell ──────────────────────────────────────── */
.sp-shell {
	position: relative;
	z-index: 1;
}

.sp-section {
	position: relative;
	padding: 80px 40px;
	max-width: 1100px;
	margin: 0 auto;
}

.sp-section.narrow { max-width: 820px; }
.sp-section.wide { max-width: 1280px; }

.sp-hero {
	padding: 18vh 40px 80px;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

.sp-label {
	display: inline-block;
	font-size: 10px;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: rgba(230, 180, 210, 0.55);
	margin-bottom: 24px;
	font-weight: 500;
}

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

.sp-h1 em {
	font-style: italic;
	color: 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);
}

.sp-h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(32px, 5vw, 60px);
	font-weight: 400;
	line-height: 1.15;
	color: #fcf0f6;
	text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.sp-h2 em {
	font-style: italic;
	color: rgba(245, 163, 199, 0.95);
	text-shadow: 0 0 24px rgba(245, 163, 199, 0.18);
}

.sp-h3 {
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	font-weight: 400;
	color: #fcf2f8;
	margin-bottom: 12px;
}

.sp-lead {
	font-size: clamp(15px, 1.6vw, 19px);
	line-height: 1.7;
	color: rgba(230, 200, 215, 0.7);
	font-weight: 300;
	max-width: 620px;
	margin: 28px auto 0;
}

.sp-body {
	font-size: 14px;
	line-height: 1.75;
	color: rgba(230, 200, 215, 0.65);
	font-weight: 300;
}

/* ── Glass card ──────────────────────────────────────── */
.sp-card {
	border: 1px solid rgba(180, 140, 170, 0.12);
	border-radius: 20px;
	padding: 32px;
	background: rgba(18, 10, 18, 0.55);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: 0 8px 40px rgba(0,0,0,0.4);
	transition: border-color 0.4s, background 0.4s, transform 0.4s;
}

.sp-card:hover {
	border-color: rgba(180, 140, 170, 0.3);
	background: rgba(35, 20, 35, 0.45);
}

.sp-card.lift:hover {
	transform: translateY(-4px);
}

.sp-card-quote {
	border-radius: 28px;
	padding: 56px 48px;
	text-align: center;
}

.sp-card-quote blockquote {
	font-family: 'Playfair Display', serif;
	font-size: clamp(22px, 3vw, 36px);
	font-style: italic;
	font-weight: 400;
	line-height: 1.4;
	color: rgba(255, 240, 250, 0.95);
}

.sp-card-quote .attr {
	display: block;
	margin-top: 24px;
	font-size: 11px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: rgba(230, 180, 210, 0.5);
}

/* ── Buttons ─────────────────────────────────────────── */
.sp-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: rgba(245, 163, 199, 0.95);
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.4s;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

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

.sp-btn-ghost {
	background: transparent;
	border-color: rgba(180, 140, 170, 0.2);
	color: rgba(230, 200, 215, 0.6);
}

.sp-btn-ghost:hover {
	background: rgba(35, 20, 35, 0.4);
	color: rgba(245, 163, 199, 0.9);
}

/* ── Form fields ─────────────────────────────────────── */
.sp-field {
	display: block;
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(180, 140, 170, 0.15);
	border-radius: 12px;
	background: rgba(18, 10, 18, 0.55);
	backdrop-filter: blur(10px);
	color: #f4e8ee;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 300;
	transition: border-color 0.3s, box-shadow 0.3s, background 0.3s, background-position 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-field::placeholder {
	color: rgba(230, 200, 215, 0.3);
}

.sp-field:focus {
	outline: none;
	border-color: rgba(245, 163, 199, 0.5);
	background: rgba(28, 16, 28, 0.65);
	box-shadow: 0 0 0 4px rgba(245, 163, 199, 0.1);
}

textarea.sp-field {
	min-height: 160px;
	resize: vertical;
	line-height: 1.6;
}

select.sp-field {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23f5a3c7' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M2 3l4 4 4-4'/></svg>");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 11px 7px;
	padding-right: 38px;
	cursor: pointer;
}

select.sp-field:hover {
	background-position: right 12px center;
	border-color: rgba(245, 163, 199, 0.32);
}

select.sp-field:focus {
	background-position: right 12px center;
}

select.sp-field option {
	background: #100712;
	color: #f4e8ee;
}

.sp-label-form {
	display: block;
	font-size: 10px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: rgba(230, 180, 210, 0.55);
	margin-bottom: 8px;
	font-weight: 500;
}

/* ── Reveal hookup (extends home's [data-reveal] system) ── */
[data-reveal] {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
				transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
	opacity: 1;
	transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
	.sp-section { padding: 60px 24px; }
	.sp-hero { padding: 14vh 24px 60px; }
	.sp-card { padding: 24px; }
	.sp-card-quote { padding: 36px 24px; }
}

/* ── Section grids (utility) ─────────────────────────── */
.sp-grid {
	display: grid;
	gap: 20px;
}

.sp-grid-2 { grid-template-columns: repeat(2, 1fr); }
.sp-grid-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 768px) {
	.sp-grid-2, .sp-grid-3 { grid-template-columns: 1fr; }
}
