/**
 * Life Coach demo — warm transformation theme
 *
 * Sage green, warm rose & cream. Life wheel assessment + clarity session booking.
 * Session flow, coaching packages, philosophy strip (no card grids / no 3-col footer).
 */

:root {
	--demo-font-body: "Nunito Sans", system-ui, sans-serif;
	--demo-font-display: "Cormorant Garamond", Georgia, serif;

	--demo-primary: #5a7a6a;
	--demo-primary-soft: #e8f0ec;
	--demo-primary-dark: #3d5a4f;
	--demo-accent: #d4847a;
	--demo-accent-soft: #fdf2f0;
	--demo-warm: #c9a87c;
	--demo-heading: #2c3e36;
	--demo-text: #4a5d55;
	--demo-muted: #7a8f86;
	--demo-bg: #faf9f7;
	--demo-bg-alt: #f5f2ed;
	--demo-surface: #ffffff;
	--demo-border: #e5e3df;
	--demo-radius-lg: 20px;
	--demo-radius-md: 12px;
	--demo-shadow-sm: 0 4px 24px rgba(90, 122, 106, 0.08);
	--demo-shadow-md: 0 20px 50px rgba(90, 122, 106, 0.12);
}

[data-reveal] {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

.demo-life-coach .demo-btn-primary {
	background: linear-gradient(135deg, var(--demo-primary) 0%, var(--demo-primary-dark) 100%);
	color: #fff;
	border-radius: 999px;
	font-weight: 700;
	font-size: 14px;
	padding: 14px 28px;
	box-shadow: var(--demo-shadow-sm);
}

.demo-life-coach .demo-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--demo-shadow-md);
}

.demo-life-coach .demo-btn-outline {
	border: 2px solid var(--demo-primary);
	color: var(--demo-primary-dark);
	border-radius: 999px;
	font-weight: 700;
	font-size: 14px;
	background: transparent;
}

.demo-life-coach .demo-btn-outline:hover {
	background: var(--demo-primary-soft);
}

/* Invitation bar */
.lc-invite-bar {
	background: linear-gradient(90deg, var(--demo-primary-dark), var(--demo-primary));
	color: #e8f0ec;
	padding: 10px 16px;
	font-size: 14px;
	text-align: center;
	font-weight: 500;
}

.lc-invite-bar em {
	font-style: normal;
	color: var(--demo-warm);
	font-weight: 700;
}

/* Nav */
.lc-nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(250, 249, 247, 0.96);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--demo-border);
}

.lc-nav.is-scrolled {
	box-shadow: var(--demo-shadow-sm);
}

.lc-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 16px 0;
}

.lc-brand strong {
	display: block;
	font-family: var(--demo-font-display);
	font-size: 24px;
	font-weight: 500;
	color: var(--demo-heading);
	line-height: 1.1;
}

.lc-brand span {
	font-size: 11px;
	color: var(--demo-muted);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.lc-nav-links {
	display: flex;
	gap: 28px;
}

.lc-nav-links a {
	font-size: 14px;
	font-weight: 600;
	color: var(--demo-text);
}

.lc-nav-links a:hover {
	color: var(--demo-primary);
}

/* Hero */
.lc-hero {
	padding: clamp(56px, 8vw, 96px) 0;
	background:
		radial-gradient(circle at 80% 20%, rgba(212, 132, 122, 0.1) 0%, transparent 45%),
		radial-gradient(circle at 20% 80%, rgba(90, 122, 106, 0.08) 0%, transparent 40%),
		var(--demo-bg);
}

.lc-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 56px);
	align-items: center;
}

.lc-hero-tag {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--demo-accent);
	margin-bottom: 18px;
}

.lc-hero-title {
	font-family: var(--demo-font-display);
	font-size: clamp(2.4rem, 4.5vw, 3.5rem);
	font-weight: 500;
	line-height: 1.1;
	color: var(--demo-heading);
	margin-bottom: 20px;
}

.lc-hero-title em {
	font-style: italic;
	color: var(--demo-primary);
}

.lc-hero-lead {
	font-size: 17px;
	color: var(--demo-muted);
	line-height: 1.75;
	margin-bottom: 28px;
	max-width: 480px;
}

.lc-hero-values {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 32px;
}

.lc-hero-value {
	font-size: 13px;
	font-weight: 600;
	color: var(--demo-text);
	background: var(--demo-surface);
	border: 1px solid var(--demo-border);
	padding: 8px 16px;
	border-radius: 999px;
}

.lc-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.lc-hero-img {
	border-radius: var(--demo-radius-lg);
	overflow: hidden;
	box-shadow: var(--demo-shadow-md);
	position: relative;
}

.lc-hero-img img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.lc-hero-caption {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.92);
	padding: 14px 18px;
	border-radius: var(--demo-radius-md);
	font-family: var(--demo-font-display);
	font-size: 1rem;
	font-style: italic;
	color: var(--demo-heading);
	text-align: center;
}

/* Life areas */
.lc-areas {
	padding: clamp(48px, 7vw, 72px) 0;
	background: var(--demo-surface);
	border-block: 1px solid var(--demo-border);
}

.lc-areas-header {
	text-align: center;
	max-width: 520px;
	margin: 0 auto 32px;
}

.lc-areas-header h2 {
	font-family: var(--demo-font-display);
	font-size: clamp(1.75rem, 3vw, 2.2rem);
	color: var(--demo-heading);
	margin-bottom: 8px;
}

.lc-areas-header p {
	font-size: 15px;
	color: var(--demo-muted);
}

.lc-areas-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	max-width: 880px;
	margin: 0 auto;
}

.lc-area-item {
	text-align: center;
	padding: 18px 12px;
	background: var(--demo-bg);
	border-radius: var(--demo-radius-md);
	border: 1px solid var(--demo-border);
}

.lc-area-item span {
	display: block;
	font-size: 24px;
	margin-bottom: 6px;
}

.lc-area-item strong {
	font-size: 13px;
	font-weight: 700;
	color: var(--demo-heading);
}

/* Life wheel + booking */
.lc-booking-section {
	padding: clamp(56px, 8vw, 96px) 0;
	background: var(--demo-bg-alt);
}

.lc-booking-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: start;
}

.lc-wheel-panel {
	background: var(--demo-surface);
	border-radius: var(--demo-radius-lg);
	border: 1px solid var(--demo-border);
	box-shadow: var(--demo-shadow-md);
	overflow: hidden;
}

.lc-wheel-header {
	padding: 22px 24px;
	border-bottom: 1px solid var(--demo-border);
	text-align: center;
}

.lc-wheel-header h2 {
	font-family: var(--demo-font-display);
	font-size: 1.35rem;
	color: var(--demo-heading);
	margin-bottom: 6px;
}

.lc-wheel-header p {
	font-size: 13px;
	color: var(--demo-muted);
}

.lc-wheel-body {
	padding: 28px 24px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lc-wheel-visual {
	position: relative;
	width: 280px;
	height: 280px;
	margin-bottom: 24px;
}

.lc-wheel-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--demo-primary-soft);
	border: 2px solid var(--demo-primary);
	display: grid;
	place-items: center;
	text-align: center;
	font-family: var(--demo-font-display);
	font-size: 14px;
	font-weight: 600;
	color: var(--demo-primary-dark);
	line-height: 1.2;
	z-index: 2;
}

.lc-wheel-spoke {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 120px;
	transform-origin: 0 50%;
}

.lc-wheel-spoke-inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	padding-left: 8px;
}

.lc-wheel-spoke-label {
	font-size: 11px;
	font-weight: 700;
	color: var(--demo-heading);
	white-space: nowrap;
}

.lc-wheel-spoke-bar {
	width: 60px;
	height: 6px;
	background: var(--demo-border);
	border-radius: 999px;
	overflow: hidden;
}

.lc-wheel-spoke-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--demo-primary), var(--demo-accent));
	border-radius: 999px;
}

.lc-wheel-spoke-score {
	font-size: 10px;
	font-weight: 700;
	color: var(--demo-muted);
}

.lc-wheel-legend {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px 16px;
}

.lc-wheel-legend-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12px;
	color: var(--demo-text);
	padding: 6px 0;
	border-bottom: 1px dashed var(--demo-border);
}

.lc-wheel-legend-item strong {
	color: var(--demo-primary-dark);
}

.lc-wheel-note {
	padding: 16px 24px;
	background: var(--demo-accent-soft);
	font-size: 13px;
	color: #9a4a42;
	line-height: 1.55;
	border-top: 1px solid #f5d5d0;
}

.lc-booking-panel {
	background: var(--demo-surface);
	border-radius: var(--demo-radius-lg);
	border: 2px solid var(--demo-primary);
	box-shadow: var(--demo-shadow-md);
	overflow: hidden;
}

.lc-booking-panel-header {
	padding: 28px 28px 0;
}

.lc-booking-panel-header h2 {
	font-family: var(--demo-font-display);
	font-size: 1.55rem;
	color: var(--demo-heading);
	margin-bottom: 10px;
}

.lc-booking-panel-header p {
	font-size: 14px;
	color: var(--demo-muted);
	line-height: 1.65;
}

.lc-booking-includes {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 16px 28px 20px;
	border-bottom: 1px solid var(--demo-border);
}

.lc-booking-include {
	font-size: 12px;
	font-weight: 600;
	color: var(--demo-primary-dark);
	background: var(--demo-primary-soft);
	padding: 6px 14px;
	border-radius: 999px;
}

.lc-booking-panel-body {
	padding: 24px 28px 28px;
}

.lc-booking-panel .demo-shortcode-placeholder {
	border: 2px dashed #b8d4c8;
	border-radius: var(--demo-radius-md);
	background: var(--demo-primary-soft);
	padding: 32px 24px;
	text-align: center;
}

/* Packages */
.lc-packages {
	padding: clamp(56px, 8vw, 88px) 0;
	background: var(--demo-bg);
}

.lc-packages-header {
	text-align: center;
	margin-bottom: 36px;
}

.lc-packages-header h2 {
	font-family: var(--demo-font-display);
	font-size: clamp(1.75rem, 3vw, 2.2rem);
	color: var(--demo-heading);
}

.lc-package-list {
	max-width: 720px;
	margin: 0 auto;
}

.lc-package-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 20px;
	padding: 22px 0;
	border-bottom: 1px solid var(--demo-border);
	align-items: start;
}

.lc-package-row:last-child {
	border-bottom: none;
}

.lc-package-row h3 {
	font-family: var(--demo-font-display);
	font-size: 1.2rem;
	color: var(--demo-heading);
	margin-bottom: 6px;
}

.lc-package-row p {
	font-size: 14px;
	color: var(--demo-muted);
	line-height: 1.6;
	margin-bottom: 8px;
}

.lc-package-meta {
	font-size: 12px;
	font-weight: 700;
	color: var(--demo-accent);
}

.lc-package-price {
	font-family: var(--demo-font-display);
	font-size: 1.35rem;
	color: var(--demo-primary-dark);
	text-align: right;
	white-space: nowrap;
}

.lc-package-price span {
	display: block;
	font-family: var(--demo-font-body);
	font-size: 11px;
	color: var(--demo-muted);
	font-weight: 500;
}

/* Session flow */
.lc-session-flow {
	padding: clamp(48px, 7vw, 72px) 0;
	background: var(--demo-surface);
	border-top: 1px solid var(--demo-border);
}

.lc-flow-header {
	text-align: center;
	margin-bottom: 40px;
}

.lc-flow-header h2 {
	font-family: var(--demo-font-display);
	font-size: 1.5rem;
	color: var(--demo-heading);
}

.lc-flow-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	max-width: 900px;
	margin: 0 auto;
}

.lc-flow-step {
	text-align: center;
	padding: 0 10px;
}

.lc-flow-icon {
	width: 52px;
	height: 52px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: var(--demo-primary-soft);
	border: 2px solid var(--demo-primary);
	display: grid;
	place-items: center;
	font-size: 22px;
}

.lc-flow-step h3 {
	font-size: 14px;
	font-weight: 700;
	color: var(--demo-heading);
	margin-bottom: 6px;
}

.lc-flow-step p {
	font-size: 12px;
	color: var(--demo-muted);
	line-height: 1.55;
}

/* Philosophy */
.lc-philosophy {
	padding: 24px 0;
	background: var(--demo-primary);
	color: #e8f0ec;
}

.lc-philosophy-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px 40px;
	font-size: 14px;
	font-weight: 600;
}

/* Quote */
.lc-quote {
	padding: clamp(56px, 7vw, 80px) 0;
	background: var(--demo-accent-soft);
	text-align: center;
}

.lc-quote blockquote {
	font-family: var(--demo-font-display);
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	font-style: italic;
	color: var(--demo-heading);
	max-width: 640px;
	margin: 0 auto 18px;
	line-height: 1.5;
}

.lc-quote cite {
	font-size: 14px;
	font-weight: 600;
	color: var(--demo-accent);
	font-style: normal;
}

/* For you */
.lc-for-you {
	padding: clamp(48px, 7vw, 72px) 0;
	background: var(--demo-bg);
}

.lc-for-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	max-width: 800px;
	margin: 0 auto;
}

.lc-for-col {
	padding: 28px;
	background: var(--demo-surface);
	border-radius: var(--demo-radius-lg);
	border: 1px solid var(--demo-border);
}

.lc-for-col h3 {
	font-family: var(--demo-font-display);
	font-size: 1.2rem;
	color: var(--demo-heading);
	margin-bottom: 14px;
}

.lc-for-col.is-yes {
	border-color: #b8d4c8;
	background: linear-gradient(180deg, var(--demo-primary-soft), var(--demo-surface));
}

.lc-for-col li {
	font-size: 14px;
	color: var(--demo-text);
	padding: 6px 0 6px 22px;
	position: relative;
	line-height: 1.5;
}

.lc-for-col.is-yes li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--demo-primary);
	font-weight: 700;
}

.lc-for-col.is-no li::before {
	content: "—";
	position: absolute;
	left: 0;
	color: var(--demo-muted);
}

/* Footer */
.lc-footer {
	background: var(--demo-heading);
	color: #a8bdb4;
	padding: 40px 0 32px;
	text-align: center;
}

.lc-footer-brand {
	font-family: var(--demo-font-display);
	font-size: 22px;
	color: #fff;
	margin-bottom: 8px;
}

.lc-footer-tagline {
	font-size: 14px;
	color: var(--demo-warm);
	margin-bottom: 16px;
	font-style: italic;
}

.lc-footer-contact {
	font-size: 14px;
	margin-bottom: 20px;
}

.lc-footer-contact a {
	color: #e8f0ec;
	font-weight: 600;
}

.lc-footer-meta {
	font-size: 12px;
	line-height: 1.7;
	opacity: 0.8;
}

/* Mobile CTA */
.lc-mobile-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 200;
	padding: 12px 20px;
	background: rgba(250, 249, 247, 0.96);
	border-top: 1px solid var(--demo-border);
}

.lc-mobile-cta .demo-btn {
	width: 100%;
	justify-content: center;
}

/* Responsive */
@media (max-width: 960px) {
	.lc-hero-grid,
	.lc-booking-grid,
	.lc-for-grid,
	.lc-areas-grid,
	.lc-flow-row {
		grid-template-columns: 1fr;
	}

	.lc-wheel-visual {
		width: 240px;
		height: 240px;
	}

	.lc-nav-links {
		display: none;
	}

	.lc-package-row {
		grid-template-columns: 1fr;
	}

	.lc-package-price {
		text-align: left;
	}
}

@media (max-width: 640px) {
	body.demo-life-coach {
		padding-bottom: 72px;
	}

	.lc-areas-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.lc-wheel-legend {
		grid-template-columns: 1fr;
	}
}
