/* =========================================================
   AURA COACHING & STRIPE DEPOSIT SYSTEM - DESIGN SYSTEM
   ========================================================= */

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

:root {
	color-scheme: light;
	--lp-accent: #E15220;
	--lp-accent-hover: #F06533;
	--lp-accent-light: rgba(225, 82, 32, 0.08);
	--lp-accent-focus: rgba(225, 82, 32, 0.22);
	
	--lp-text: #3B1C13;
	--lp-text-muted: rgba(59, 28, 19, 0.72);
	--lp-text-subtle: rgba(59, 28, 19, 0.45);
	
	--lp-bg-page: #FAF6F0;
	--lp-bg-100: #FFFDF9;
	--lp-bg-200: #FFFFFF;
	--lp-bg-300: #F4ECE1;
	
	--lp-border: #E6D7C7;
	--lp-border-light: rgba(230, 215, 199, 0.6);
	
	--lp-success: #15803D;
	--lp-success-bg: #DCFCE7;
	--lp-warning: #B45309;
	--lp-warning-bg: #FEF3C7;
	--lp-danger: #B91C1C;
	--lp-danger-bg: #FEE2E2;
	--lp-info: #1D4ED8;
	--lp-info-bg: #DBEAFE;
	
	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 16px;
	--radius-full: 9999px;
	
	--font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
	--font-serif: "Playfair Display", Georgia, serif;
	--font-mono: "JetBrains Mono", monospace;
	
	--shadow-card: 0 2px 4px rgba(59, 28, 19, 0.03), 0 8px 24px rgba(59, 28, 19, 0.05);
	--shadow-pop: 0 12px 32px rgba(59, 28, 19, 0.12), 0 2px 6px rgba(59, 28, 19, 0.04);
	--shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.03);
}

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

body {
	margin: 0;
	background-color: var(--lp-bg-page);
	color: var(--lp-text);
	font-family: var(--font-sans);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Base utility containers */
.aura-app {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.container-wide {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

.container-narrow {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

/* Header & Nav */
.aura-nav {
	border-bottom: 1px solid var(--lp-border);
	background: var(--lp-bg-100);
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(10px);
	background: rgba(255, 253, 249, 0.95);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

.brand-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--lp-text);
	cursor: pointer;
}

.brand-glyph {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: linear-gradient(135deg, #E15220 0%, #B83A0E 100%);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-serif);
	font-size: 20px;
	font-weight: 700;
	box-shadow: 0 3px 8px rgba(225, 82, 32, 0.25);
}

.brand-meta {
	display: flex;
	flex-direction: column;
}

.brand-title {
	font-family: var(--font-serif);
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--lp-text);
	line-height: 1.1;
}

.brand-sub {
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--lp-accent);
	font-weight: 600;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.nav-btn-link {
	background: none;
	border: none;
	font-family: var(--font-sans);
	font-size: 0.925rem;
	font-weight: 500;
	color: var(--lp-text-muted);
	cursor: pointer;
	padding: 0.4rem 0.6rem;
	border-radius: var(--radius-sm);
	transition: color 0.15s ease;
	text-decoration: none;
}

.nav-btn-link:hover, .nav-btn-link.active {
	color: var(--lp-accent);
}

/* Corner Bracket Decorative System */
.corner-frame {
	position: relative;
	background: var(--lp-bg-200);
	border: 1px solid var(--lp-border);
	box-shadow: var(--shadow-card);
}

.bracket {
	position: absolute;
	width: 8px;
	height: 8px;
	border: 1px solid var(--lp-border);
	background: var(--lp-bg-100);
	border-radius: 1.5px;
	pointer-events: none;
	z-index: 10;
}

.bracket-tl { top: -4px; left: -4px; }
.bracket-tr { top: -4px; right: -4px; }
.bracket-bl { bottom: -4px; left: -4px; }
.bracket-br { bottom: -4px; right: -4px; }

/* Hero Section */
.hero-section {
	padding: 4.5rem 0 3.5rem;
	position: relative;
	background: radial-gradient(circle at 50% 0%, rgba(225, 82, 32, 0.06) 0%, transparent 70%);
}

.hero-badge-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	border-radius: var(--radius-full);
	background: var(--lp-accent-light);
	border: 1px solid rgba(225, 82, 32, 0.2);
	color: var(--lp-accent);
	font-size: 0.825rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.hero-badge-pulse {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #16A34A;
	box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
}

.hero-heading {
	font-family: var(--font-serif);
	font-size: clamp(2.2rem, 5vw, 3.75rem);
	line-height: 1.15;
	font-weight: 600;
	letter-spacing: -0.025em;
	color: var(--lp-text);
	max-width: 900px;
	margin-bottom: 1.5rem;
}

.hero-heading em {
	font-style: italic;
	color: var(--lp-accent);
	font-weight: 400;
}

.hero-subtitle {
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	color: var(--lp-text-muted);
	line-height: 1.6;
	max-width: 720px;
	margin-bottom: 2.25rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
}

.hero-stats-strip {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
	margin-top: 3.5rem;
	padding: 1.5rem 2rem;
	background: var(--lp-bg-100);
	border: 1px solid var(--lp-border);
	border-radius: var(--radius-md);
}

.stat-item {
	display: flex;
	flex-direction: column;
}

.stat-number {
	font-family: var(--font-serif);
	font-size: 2rem;
	font-weight: 700;
	color: var(--lp-text);
	line-height: 1.1;
}

.stat-label {
	font-size: 0.85rem;
	color: var(--lp-text-muted);
	margin-top: 4px;
}

/* Button System (Pill styled) */
.btn-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0.75rem 1.6rem;
	border-radius: var(--radius-full);
	font-family: var(--font-sans);
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.16s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border: 1px solid transparent;
}

.btn-pill:active {
	transform: scale(0.98);
}

.btn-pill-primary {
	background: var(--lp-accent);
	color: #FFFFFF;
	box-shadow: 0 4px 14px rgba(225, 82, 32, 0.3);
}

.btn-pill-primary:hover {
	background: var(--lp-accent-hover);
	box-shadow: 0 6px 20px rgba(225, 82, 32, 0.4);
}

.btn-pill-secondary {
	background: var(--lp-bg-100);
	color: var(--lp-text);
	border-color: var(--lp-border);
}

.btn-pill-secondary:hover {
	background: var(--lp-bg-300);
	border-color: var(--lp-text-muted);
}

.btn-pill-ghost {
	background: transparent;
	color: var(--lp-accent);
	border-color: rgba(225, 82, 32, 0.3);
}

.btn-pill-ghost:hover {
	background: var(--lp-accent-light);
	border-color: var(--lp-accent);
}

.btn-sm {
	padding: 0.45rem 1rem;
	font-size: 0.85rem;
}

.btn-lg {
	padding: 0.9rem 2rem;
	font-size: 1.05rem;
}

.btn-pill:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	pointer-events: none;
}

/* Section Common */
.section-pad {
	padding: 4.5rem 0;
}

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

.section-tag {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--lp-accent);
	margin-bottom: 0.6rem;
}

.section-title {
	font-family: var(--font-serif);
	font-size: clamp(1.8rem, 3.5vw, 2.5rem);
	line-height: 1.2;
	font-weight: 600;
	color: var(--lp-text);
	margin-bottom: 0.8rem;
}

.section-desc {
	font-size: 1rem;
	color: var(--lp-text-muted);
	line-height: 1.6;
}

/* Packages Grid */
.packages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
	gap: 1.5rem;
	align-items: stretch;
}

.package-card {
	display: flex;
	flex-direction: column;
	padding: 2rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.package-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-pop);
}

.package-card.highlighted {
	border-color: var(--lp-accent);
	background: linear-gradient(180deg, #FFFDFB 0%, #FFF8F3 100%);
}

.package-badge-top {
	align-self: flex-start;
	padding: 4px 10px;
	border-radius: var(--radius-full);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 1.25rem;
}

.badge-orange {
	background: var(--lp-accent);
	color: white;
}

.badge-cream {
	background: var(--lp-bg-300);
	color: var(--lp-text);
	border: 1px solid var(--lp-border);
}

.pkg-title {
	font-family: var(--font-serif);
	font-size: 1.45rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--lp-text);
}

.pkg-tagline {
	font-size: 0.875rem;
	color: var(--lp-text-muted);
	margin-bottom: 1.5rem;
	min-height: 2.6rem;
}

.pkg-pricing-box {
	padding: 1.2rem;
	border-radius: var(--radius-md);
	background: var(--lp-bg-100);
	border: 1px solid var(--lp-border-light);
	margin-bottom: 1.5rem;
}

.pkg-deposit-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}

.pkg-deposit-amount {
	font-family: var(--font-serif);
	font-size: 2.1rem;
	font-weight: 700;
	color: var(--lp-accent);
	line-height: 1;
}

.pkg-deposit-label {
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--lp-text-muted);
}

.pkg-total-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 0.5rem;
	padding-top: 0.5rem;
	border-top: 1px dashed var(--lp-border);
	font-size: 0.85rem;
	color: var(--lp-text-muted);
}

.pkg-total-price {
	font-weight: 600;
	color: var(--lp-text);
}

.pkg-features-list {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.pkg-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.875rem;
	color: var(--lp-text);
	line-height: 1.45;
}

.pkg-check-icon {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--lp-accent-light);
	color: var(--lp-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
	font-size: 11px;
	font-weight: 700;
}

/* Booking Modal / Funnel */
.funnel-container {
	margin: 2rem 0;
}

.funnel-card {
	padding: 2.5rem;
}

.step-indicator {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	margin-bottom: 2.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--lp-border);
}

.step-node {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--lp-text-subtle);
}

.step-node.active {
	color: var(--lp-accent);
	font-weight: 700;
}

.step-node.completed {
	color: var(--lp-text);
}

.step-num {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid var(--lp-border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	background: var(--lp-bg-100);
}

.step-node.active .step-num {
	background: var(--lp-accent);
	color: white;
	border-color: var(--lp-accent);
}

.step-node.completed .step-num {
	background: #16A34A;
	color: white;
	border-color: #16A34A;
}

/* Calendar & Slots Selector */
.calendar-layout {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(18rem, 100%), 1fr));
	gap: 2rem;
}

.cal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.25rem;
}

.cal-nav-btn {
	background: var(--lp-bg-100);
	border: 1px solid var(--lp-border);
	border-radius: var(--radius-sm);
	padding: 6px 12px;
	cursor: pointer;
	font-size: 0.85rem;
	color: var(--lp-text);
}

.cal-nav-btn:hover {
	background: var(--lp-bg-300);
}

.cal-days-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 6px;
	text-align: center;
}

.cal-day-label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--lp-text-subtle);
	padding-bottom: 6px;
}

.cal-date-btn {
	aspect-ratio: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-sm);
	border: 1px solid transparent;
	background: var(--lp-bg-100);
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--lp-text);
	cursor: pointer;
	transition: all 0.15s ease;
}

.cal-date-btn:hover:not(:disabled) {
	border-color: var(--lp-accent);
	background: var(--lp-accent-light);
}

.cal-date-btn.selected {
	background: var(--lp-accent);
	color: white;
	font-weight: 700;
}

.cal-date-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
	background: transparent;
}

.slots-pane {
	display: flex;
	flex-direction: column;
}

.slots-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-top: 1rem;
}

.slot-btn {
	padding: 0.85rem 0.5rem;
	text-align: center;
	border-radius: var(--radius-md);
	border: 1px solid var(--lp-border);
	background: var(--lp-bg-100);
	font-family: var(--font-sans);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--lp-text);
	cursor: pointer;
	transition: all 0.15s ease;
}

.slot-btn:hover:not(:disabled) {
	border-color: var(--lp-accent);
	color: var(--lp-accent);
	background: var(--lp-accent-light);
}

.slot-btn.selected {
	background: var(--lp-accent);
	color: white;
	border-color: var(--lp-accent);
	box-shadow: 0 4px 10px rgba(225, 82, 32, 0.25);
}

.slot-btn:disabled {
	opacity: 0.35;
	background: var(--lp-bg-300);
	text-decoration: line-through;
	cursor: not-allowed;
}

/* Forms & Inputs */
.form-grid-2 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
	gap: 1.25rem;
}

.field-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 1.25rem;
}

.field-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--lp-text);
}

.field-hint {
	font-size: 0.775rem;
	color: var(--lp-text-muted);
}

.aura-input, .aura-select, .aura-textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border-radius: var(--radius-md);
	border: 1px solid var(--lp-border);
	background: var(--lp-bg-100);
	font-family: var(--font-sans);
	font-size: 0.925rem;
	color: var(--lp-text);
	outline: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.aura-input:focus, .aura-select:focus, .aura-textarea:focus {
	border-color: var(--lp-accent);
	box-shadow: 0 0 0 3px var(--lp-accent-focus);
	background: #FFFFFF;
}

/* Stripe Checkout Component Box */
.stripe-payment-box {
	background: #FFFFFF;
	border: 1px solid var(--lp-border);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	box-shadow: var(--shadow-card);
}

.stripe-badge-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 1rem;
	margin-bottom: 1.25rem;
	border-bottom: 1px solid var(--lp-border-light);
}

.stripe-logo-group {
	display: flex;
	align-items: center;
	gap: 8px;
}

.stripe-brand-tag {
	background: #635BFF;
	color: white;
	font-weight: 800;
	font-size: 0.75rem;
	letter-spacing: 0.05em;
	padding: 2px 6px;
	border-radius: 4px;
}

.stripe-secure-text {
	font-size: 0.775rem;
	color: var(--lp-text-muted);
	display: flex;
	align-items: center;
	gap: 4px;
}

.breakdown-summary {
	background: var(--lp-bg-100);
	border: 1px solid var(--lp-border);
	border-radius: var(--radius-md);
	padding: 1.25rem;
	margin-bottom: 1.5rem;
}

.breakdown-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.9rem;
	color: var(--lp-text-muted);
	margin-bottom: 0.6rem;
}

.breakdown-row.emphasis {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--lp-accent);
	padding-top: 0.75rem;
	margin-top: 0.75rem;
	border-top: 1px dashed var(--lp-border);
	margin-bottom: 0;
}

.card-element-mock {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

.test-card-quick-fill {
	display: flex;
	gap: 6px;
	margin-top: 0.5rem;
	flex-wrap: wrap;
}

.pill-tag-btn {
	padding: 4px 10px;
	border-radius: var(--radius-full);
	border: 1px dashed var(--lp-border);
	background: var(--lp-bg-300);
	font-size: 0.75rem;
	color: var(--lp-text);
	cursor: pointer;
}

.pill-tag-btn:hover {
	border-color: var(--lp-accent);
	color: var(--lp-accent);
}

/* Receipt / Confirmation Screen */
.confirmation-card {
	padding: 3rem 2.5rem;
	text-align: center;
}

.success-check-circle {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #DCFCE7;
	color: #15803D;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	margin: 0 auto 1.5rem;
	box-shadow: 0 4px 14px rgba(22, 163, 74, 0.2);
}

.receipt-sheet {
	background: var(--lp-bg-100);
	border: 1px solid var(--lp-border);
	border-radius: var(--radius-md);
	padding: 1.75rem;
	text-align: left;
	max-width: 600px;
	margin: 2rem auto;
}

.receipt-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--lp-border);
	margin-bottom: 1.25rem;
}

.receipt-table-row {
	display: flex;
	justify-content: space-between;
	font-size: 0.875rem;
	padding: 0.4rem 0;
	color: var(--lp-text);
}

.receipt-table-row .label {
	color: var(--lp-text-muted);
}

/* Testimonial & Social Proof Section */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(18rem, 100%), 1fr));
	gap: 1.5rem;
}

.testimonial-card {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.testimonial-quote {
	font-family: var(--font-serif);
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--lp-text);
	margin-bottom: 1.5rem;
	font-style: italic;
}

.client-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.avatar-circle {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, #E6D7C7 0%, #D8C3AE 100%);
	color: var(--lp-text);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.9rem;
}

.author-name {
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--lp-text);
}

.author-role {
	font-size: 0.8rem;
	color: var(--lp-text-muted);
}

/* FAQ Accordion */
.faq-grid {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 800px;
	margin: 0 auto;
}

.faq-card {
	padding: 1.5rem;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.faq-card:hover {
	background-color: var(--lp-bg-100);
}

.faq-header-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--lp-text);
}

.faq-body {
	margin-top: 0.75rem;
	font-size: 0.925rem;
	color: var(--lp-text-muted);
	line-height: 1.6;
}

/* Coach Admin Dashboard */
.admin-view-shell {
	padding: 2rem 0 4rem;
}

.admin-top-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.admin-tabs-bar {
	display: flex;
	gap: 8px;
	margin-bottom: 2rem;
	border-bottom: 1px solid var(--lp-border);
	padding-bottom: 0.5rem;
	overflow-x: auto;
}

.admin-tab-btn {
	padding: 0.5rem 1.25rem;
	border-radius: var(--radius-full);
	border: 1px solid transparent;
	background: transparent;
	font-family: var(--font-sans);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--lp-text-muted);
	cursor: pointer;
	transition: all 0.15s ease;
	white-space: nowrap;
}

.admin-tab-btn.active {
	background: var(--lp-accent);
	color: white;
}

.admin-tab-btn:hover:not(.active) {
	background: var(--lp-bg-300);
	color: var(--lp-text);
}

.kpi-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr));
	gap: 1.25rem;
	margin-bottom: 2rem;
}

.kpi-card {
	padding: 1.5rem;
}

.kpi-title {
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--lp-text-muted);
	margin-bottom: 0.5rem;
}

.kpi-value {
	font-family: var(--font-serif);
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--lp-text);
	line-height: 1;
}

.kpi-sub {
	font-size: 0.775rem;
	color: #15803D;
	font-weight: 600;
	margin-top: 6px;
}

/* Booking Roster Table */
.data-table-wrap {
	overflow-x: auto;
	background: #FFFFFF;
	border: 1px solid var(--lp-border);
	border-radius: var(--radius-md);
}

.aura-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.875rem;
}

.aura-table th {
	background: var(--lp-bg-100);
	padding: 0.85rem 1rem;
	text-align: left;
	font-weight: 600;
	color: var(--lp-text-muted);
	border-bottom: 1px solid var(--lp-border);
	white-space: nowrap;
}

.aura-table td {
	padding: 1rem;
	border-bottom: 1px solid var(--lp-border-light);
	color: var(--lp-text);
	vertical-align: top;
}

.aura-table tr:hover td {
	background: var(--lp-bg-100);
}

/* Badges */
.status-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 3px 8px;
	border-radius: var(--radius-full);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.status-deposit_paid {
	background: #FEF3C7;
	color: #B45309;
}

.status-confirmed {
	background: #DCFCE7;
	color: #15803D;
}

.status-completed {
	background: #DBEAFE;
	color: #1D4ED8;
}

.status-cancelled {
	background: #FEE2E2;
	color: #B91C1C;
}

/* Footer */
.aura-footer {
	margin-top: auto;
	border-top: 1px solid var(--lp-border);
	background: var(--lp-bg-100);
	padding: 3.5rem 0 2rem;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 2rem;
	margin-bottom: 2.5rem;
}

.footer-sub {
	font-size: 0.875rem;
	color: var(--lp-text-muted);
	margin-top: 0.5rem;
	max-width: 320px;
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid var(--lp-border-light);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.8rem;
	color: var(--lp-text-subtle);
}

/* Modal Backdrop */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(43, 20, 13, 0.6);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	padding: 1rem;
}

.modal-sheet {
	background: #FFFFFF;
	border: 1px solid var(--lp-border);
	border-radius: var(--radius-lg);
	max-width: 650px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: var(--shadow-pop);
	position: relative;
	padding: 2rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
	.nav-links {
		display: none;
	}
	.funnel-card {
		padding: 1.5rem 1rem;
	}
	.hero-heading {
		font-size: 2.25rem;
	}
	.receipt-sheet {
		padding: 1rem;
	}
}
