/*

Tooplate 2143 Inner Peace

https://www.tooplate.com/view/2143-inner-peace

Free HTML CSS Template

*/


@charset "utf-8";
/* CSS Document */

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

:root {
	--primary: #D4B06A;
	--secondary: #111111;
	--accent: #D4B06A;
	--light: #070707;
	--dark: #EAE7E1;
	--gradient-1: linear-gradient(135deg, #D4B06A 0%, #B98C3F 100%);
	--gradient-2: linear-gradient(135deg, #070707 0%, #111111 100%);
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--dark);
	background: var(--light);
	overflow-x: hidden;
}

section {
	scroll-margin-top: 95px;
}

/* Geometric Background Pattern */
.geometric-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.03;
	background-image:
		repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(122, 78, 47, 0.1) 35px, rgba(122, 78, 47, 0.1) 70px),
		repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(192, 146, 95, 0.1) 35px, rgba(192, 146, 95, 0.1) 70px);
}

/* Header */
header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.8rem 5%;
	max-width: 1400px;
	margin: 0 auto;
	flex-wrap: wrap;
}

@media (max-width: 1000px) and (min-width: 769px) {
	nav {
		flex-direction: column;
		gap: 1rem;
		padding: 1rem 5%;
	}

	.nav-links {
		width: 100%;
		justify-content: center;
	}
}

/* Logo */
.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.logo:hover {
	transform: scale(1.05);
}

.logo-mark {
	width: 52px;
	height: 52px;
	object-fit: cover;
	border-radius: 50%;
	border: 2px solid rgba(122, 78, 47, 0.2);
	box-shadow: 0 6px 18px rgba(47, 33, 24, 0.15);
}

.logo-mark-scrolled {
	display: none;
	width: 52px;
	height: 52px;
	object-fit: cover;
	border-radius: 50%;
	border: 2px solid rgba(17, 17, 17, 0.1);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.logo-text {
	font-family: 'Space Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2.5rem;
}

.language-switcher {
	display: flex;
	gap: 0.4rem;
	margin-left: 1rem;
}

.lang-btn {
	border: 1px solid rgba(122, 78, 47, 0.35);
	background: white;
	color: var(--primary);
	border-radius: 999px;
	padding: 0.35rem 0.75rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.25s ease;
}

.lang-btn.active,
.lang-btn:hover {
	background: var(--gradient-1);
	color: white;
	border-color: transparent;
}

.nav-links a {
	text-decoration: none;
	color: var(--dark);
	font-weight: 500;
	font-size: 1rem;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.6rem 1.2rem;
	border-radius: 6px;
	border: 1px solid transparent;
}

.nav-links a:hover {
	color: var(--primary);
	background: rgba(122, 78, 47, 0.08);
	border-color: rgba(122, 78, 47, 0.25);
	transform: translateY(-1px);
}

.nav-links a.active {
	color: white;
	background: linear-gradient(135deg, #0e0e0e 0%, #191919 100%);
	border-color: #373736;
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	position: relative;
	width: 28px;
	height: 22px;
	cursor: pointer;
}

.menu-toggle span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--dark);
	transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease, background 0.3s ease;
	border-radius: 3px;
}

.menu-toggle span:nth-child(1) {
	top: 0;
}

.menu-toggle span:nth-child(2) {
	top: 9px;
}

.menu-toggle span:nth-child(3) {
	top: 18px;
}

.menu-toggle.active span:nth-child(1) {
	top: 9px;
	transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	top: 9px;
	transform: rotate(-45deg);
}

/* Hero Section with Enhanced Animated Background */
#hero {
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gradient-2);
	position: relative;
	margin-top: 60px;
	overflow: hidden;
	--pointer-x: 50%;
	--pointer-y: 50%;
	--hero-rotate-x: 0deg;
	--hero-rotate-y: 0deg;
	--hero-shift-x: 0px;
	--hero-shift-y: 0px;
	--hero-glow-opacity: 0;
}

/* Central Light Core */
#hero::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
	transform: translate(-50%, -50%);
	z-index: 0;
}

#hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at var(--pointer-x) var(--pointer-y),
			rgba(212, 176, 106, 0.18) 0%,
			rgba(212, 176, 106, 0.08) 18%,
			transparent 42%);
	opacity: var(--hero-glow-opacity);
	transition: opacity 0.35s ease;
	pointer-events: none;
	z-index: 0;
}

/* Connecting Lines and Dots Background */
.network-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.3;
	transform: translate3d(calc(var(--hero-shift-x) * 0.18), calc(var(--hero-shift-y) * 0.18), 0);
	transition: transform 0.2s ease-out;
}

.network-line {
	position: absolute;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
	height: 1px;
	transform-origin: left center;
}

.network-line:nth-child(1) {
	width: 200px;
	top: 20%;
	left: 10%;
	transform: rotate(25deg);
	animation: pulseLine 4s ease-in-out infinite;
}

.network-line:nth-child(2) {
	width: 150px;
	top: 40%;
	right: 20%;
	transform: rotate(-45deg);
	animation: pulseLine 4s ease-in-out infinite 1s;
}

.network-line:nth-child(3) {
	width: 180px;
	bottom: 30%;
	left: 30%;
	transform: rotate(60deg);
	animation: pulseLine 4s ease-in-out infinite 2s;
}

.network-line:nth-child(4) {
	width: 220px;
	top: 60%;
	right: 15%;
	transform: rotate(-20deg);
	animation: pulseLine 4s ease-in-out infinite 3s;
}

.network-line:nth-child(5) {
	width: 160px;
	bottom: 20%;
	right: 35%;
	transform: rotate(40deg);
	animation: pulseLine 4s ease-in-out infinite 1.5s;
}

@keyframes pulseLine {

	0%,
	100% {
		opacity: 0.1;
		transform: scaleX(0.8) rotate(var(--rotation));
	}

	50% {
		opacity: 0.5;
		transform: scaleX(1) rotate(var(--rotation));
	}
}

.network-dot {
	position: absolute;
	width: 6px;
	height: 6px;
	background: white;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.network-dot:nth-child(6) {
	top: 20%;
	left: 10%;
	animation: dotPulse 3s ease-in-out infinite;
}

.network-dot:nth-child(7) {
	top: 40%;
	right: 20%;
	animation: dotPulse 3s ease-in-out infinite 0.5s;
}

.network-dot:nth-child(8) {
	bottom: 30%;
	left: 30%;
	animation: dotPulse 3s ease-in-out infinite 1s;
}

.network-dot:nth-child(9) {
	top: 60%;
	right: 15%;
	animation: dotPulse 3s ease-in-out infinite 1.5s;
}

.network-dot:nth-child(10) {
	bottom: 20%;
	right: 35%;
	animation: dotPulse 3s ease-in-out infinite 2s;
}

.network-dot:nth-child(11) {
	top: 35%;
	left: 25%;
	animation: dotPulse 3s ease-in-out infinite 2.5s;
}

.network-dot:nth-child(12) {
	bottom: 40%;
	right: 25%;
	animation: dotPulse 3s ease-in-out infinite 0.8s;
}

.network-dot:nth-child(13) {
	top: 15%;
	left: 60%;
	animation: dotPulse 3s ease-in-out infinite 1.2s;
}

.network-dot:nth-child(14) {
	bottom: 50%;
	left: 15%;
	animation: dotPulse 3s ease-in-out infinite 2.8s;
}

.network-dot:nth-child(15) {
	top: 70%;
	left: 45%;
	animation: dotPulse 3s ease-in-out infinite 0.3s;
}

.network-dot:nth-child(16) {
	top: 25%;
	right: 40%;
	animation: dotPulse 3s ease-in-out infinite 1.8s;
}

.network-dot:nth-child(17) {
	bottom: 15%;
	left: 55%;
	animation: dotPulse 3s ease-in-out infinite 2.3s;
}

@keyframes dotPulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 0.4;
	}

	50% {
		transform: scale(1.5);
		opacity: 1;
	}
}

/* Inner Peace Animated Background */
.peace-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.breathing-circle {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: breathe 8s ease-in-out infinite;
}

.breathing-circle:nth-child(1) {
	width: 300px;
	height: 300px;
	top: 10%;
	left: 10%;
	animation-delay: 0s;
}

.breathing-circle:nth-child(2) {
	width: 200px;
	height: 200px;
	top: 60%;
	right: 15%;
	animation-delay: 2s;
}

.breathing-circle:nth-child(3) {
	width: 250px;
	height: 250px;
	bottom: 20%;
	left: 30%;
	animation-delay: 4s;
}

.breathing-circle:nth-child(4) {
	width: 180px;
	height: 180px;
	top: 30%;
	right: 25%;
	animation-delay: 6s;
}

@keyframes breathe {

	0%,
	100% {
		transform: scale(1) translate(0, 0);
		opacity: 0.3;
	}

	25% {
		transform: scale(1.2) translate(-10px, -10px);
		opacity: 0.5;
	}

	50% {
		transform: scale(1.4) translate(10px, -20px);
		opacity: 0.3;
	}

	75% {
		transform: scale(1.1) translate(-5px, 10px);
		opacity: 0.4;
	}
}

.floating-elements {
	position: absolute;
	width: 100%;
	height: 100%;
	transform: translate3d(calc(var(--hero-shift-x) * 0.1), calc(var(--hero-shift-y) * 0.1), 0);
	transition: transform 0.2s ease-out;
}

.zen-stone {
	position: absolute;
	width: 60px;
	height: 60px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
	border-radius: 50%;
	animation: float 15s ease-in-out infinite;
}

.zen-stone:nth-child(1) {
	top: 20%;
	left: 5%;
	animation-delay: 0s;
}

.zen-stone:nth-child(2) {
	top: 70%;
	right: 10%;
	animation-delay: 5s;
}

.zen-stone:nth-child(3) {
	bottom: 30%;
	left: 50%;
	animation-delay: 10s;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0) translateX(0) rotate(0deg);
	}

	33% {
		transform: translateY(-30px) translateX(20px) rotate(120deg);
	}

	66% {
		transform: translateY(20px) translateX(-20px) rotate(240deg);
	}
}

.mandala-bg {
	position: absolute;
	width: 500px;
	height: 500px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.1;
	will-change: transform;
}

.mandala-circle {
	position: absolute;
	border: 2px solid white;
	border-radius: 50%;
	animation: rotate 60s linear infinite;
}

.mandala-circle:nth-child(1) {
	width: 100%;
	height: 100%;
	animation-duration: 60s;
}

.mandala-circle:nth-child(2) {
	width: 80%;
	height: 80%;
	top: 10%;
	left: 10%;
	animation-duration: 50s;
	animation-direction: reverse;
}

.mandala-circle:nth-child(3) {
	width: 60%;
	height: 60%;
	top: 20%;
	left: 20%;
	animation-duration: 40s;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.hero-layout {
	position: relative;
	z-index: 1;
	width: min(1200px, 92%);
	display: grid;
	grid-template-columns: minmax(320px, 460px) minmax(320px, 1fr);
	align-items: center;
	gap: 3.5rem;
	padding: 4rem 0;
}

.hero-media {
	position: relative;
	display: flex;
	justify-content: center;
}

.hero-image-frame {
	position: relative;
	width: 100%;
	max-width: 440px;
	padding: 14px;
	border-radius: 32px;
	background: linear-gradient(135deg, rgba(212, 176, 106, 0.45), rgba(17, 17, 17, 0.9));
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
	transform: perspective(1200px) rotateX(var(--hero-rotate-x)) rotateY(var(--hero-rotate-y));
	transition: transform 0.18s ease-out, box-shadow 0.25s ease-out;
	will-change: transform;
}

.hero-image-frame::before {
	content: '';
	position: absolute;
	inset: -18px;
	border-radius: 42px;
	border: 1px solid rgba(212, 176, 106, 0.16);
	pointer-events: none;
}

.hero-image-frame::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 32px;
	background: radial-gradient(circle at var(--pointer-x) var(--pointer-y),
			rgba(255, 255, 255, 0.16),
			transparent 35%);
	mix-blend-mode: screen;
	opacity: calc(var(--hero-glow-opacity) * 0.9);
	pointer-events: none;
}

.hero-portrait {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center 18%;
	border-radius: 22px;
}

.hero-content {
	text-align: left;
	z-index: 1;
	padding: 2rem 0;
	max-width: 620px;
	position: relative;
	transform: translate3d(calc(var(--hero-shift-x) * -0.22), calc(var(--hero-shift-y) * -0.22), 0);
	transition: transform 0.2s ease-out;
}

.hero-content h1 {
	font-size: 3.5rem;
	color: white;
	margin-bottom: 1rem;
	animation: fadeInUp 1s ease;
	text-align: left;
}

.hero-content p {
	font-size: 1.3rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
	animation: fadeInUp 1s ease 0.2s;
	animation-fill-mode: both;
}

.hero-content p {
	font-size: 1.3rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
	animation: fadeInUp 1s ease 0.2s;
	animation-fill-mode: both;
}

.cta-button {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: white;
	color: var(--primary);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	animation: fadeInUp 1s ease 0.4s;
	animation-fill-mode: both;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	align-items: center;
	justify-content: center;
	animation: fadeInUp 1s ease 0.4s;
	animation-fill-mode: both;
}

.hero-content .hero-actions .cta-button {
	animation: none;
	margin: 0;
}

.cta-button-instagram {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.85);
	box-shadow: none;
}

.cta-button-instagram:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border-color: #fff;
}

.contact-social {
	margin-top: 1.75rem;
}

.social-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.75rem 1.25rem;
	border-radius: 999px;
	text-decoration: none;
	font-size: 0.88rem;
	font-weight: 600;
	transition: all 0.25s ease;
	border: 1px solid rgba(212, 176, 106, 0.45);
	background: rgba(212, 176, 106, 0.08);
	color: var(--dark);
}

.social-btn svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.social-btn-instagram:hover {
	background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	border-color: transparent;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(188, 24, 136, 0.25);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* About Section - Complete Redesign */
#about {
	padding: 5rem 5%;
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	position: relative;
	color: var(--dark);
}

.section-subtitle {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 3rem;
	color: #666;
	font-size: 1.1rem;
}

/* Floating Cards Design */
.about-floating-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-bottom: 4rem;
}

.floating-card {
	background: white;
	border-radius: 25px;
	padding: 2.5rem;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-card::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.floating-card:hover {
	transform: translateY(-10px) rotate(1deg);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.floating-card:hover::before {
	opacity: 0.05;
}

.card-icon {
	width: 80px;
	height: 80px;
	margin-bottom: 1.5rem;
	position: relative;
}

.icon-wrapper {
	width: 100%;
	height: 100%;
	background: var(--gradient-2);
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	animation: morphShape 8s ease-in-out infinite;
	box-shadow: 0 10px 25px rgba(136, 176, 211, 0.3);
}

@keyframes morphShape {

	0%,
	100% {
		border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
		transform: rotate(0deg);
	}

	25% {
		border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
		transform: rotate(90deg);
	}

	50% {
		border-radius: 30% 70% 70% 30% / 70% 30% 30% 70%;
		transform: rotate(180deg);
	}

	75% {
		border-radius: 70% 30% 30% 70% / 30% 70% 70% 30%;
		transform: rotate(270deg);
	}
}

.floating-card h3 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	color: var(--dark);
}

.floating-card p {
	color: #666;
	line-height: 1.6;
}

/* Feature Showcase */
.feature-showcase {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	padding: 3rem;
	background: linear-gradient(135deg, rgba(45, 90, 135, 0.03) 0%, rgba(74, 124, 138, 0.03) 100%);
	border-radius: 30px;
	position: relative;
	overflow: hidden;
}

.feature-showcase::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: repeating-linear-gradient(45deg,
			transparent,
			transparent 20px,
			rgba(45, 90, 135, 0.02) 20px,
			rgba(45, 90, 135, 0.02) 40px);
	animation: slidePattern 30s linear infinite;
}

.showcase-content h3 {
	font-size: 2.2rem;
	margin-bottom: 2rem;
	background: linear-gradient(135deg, #cfcecd 0%, #bbbab9 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-align: center;
	position: relative;
	z-index: 1;
}

.feature-list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	position: relative;
	z-index: 1;
}

.feature-list li {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.5rem;
	background: white;
	border-radius: 20px;
	transition: all 0.4s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: hidden;
}

.feature-list li::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(192, 146, 95, 0.2), transparent);
	transition: left 0.5s ease;
}

.feature-list li:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
	background: linear-gradient(135deg, rgba(192, 146, 95, 0.08) 0%, rgba(122, 78, 47, 0.08) 100%);
}

.feature-list li:hover::before {
	left: 100%;
}

.feature-check {
	width: 35px;
	height: 35px;
	background: linear-gradient(135deg, #c0925f 0%, #7a4e2f 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	flex-shrink: 0;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.feature-list li:hover .feature-check {
	transform: scale(1.1) rotate(360deg);
	box-shadow: 0 5px 15px rgba(192, 146, 95, 0.4);
}

/* Practices Section - Futuristic Timeline Design */
#practices {
	background: linear-gradient(135deg, rgba(192, 146, 95, 0.08) 0%, rgba(122, 78, 47, 0.05) 100%);
	padding: 5rem 5%;
}

.practices-container {
	max-width: 1200px;
	margin: 0 auto;
}

.practice-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 3rem;
	margin-top: 3rem;
}

/* Futuristic Left Timeline */
.timeline-track {
	position: relative;
	padding: 2rem 0;
}

.timeline-progress {
	position: absolute;
	left: 50%;
	top: 2rem;
	bottom: 2rem;
	width: 2px;
	background: rgba(122, 78, 47, 0.1);
	transform: translateX(-50%);
}

.timeline-progress::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--gradient-1);
	animation: fillTimeline 3s ease forwards;
}

@keyframes fillTimeline {
	to {
		height: 100%;
	}
}

.timeline-points {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.timeline-point {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
}

.futuristic-label {
	position: relative;
	padding: 1rem 2rem;
	background: white;
	border-radius: 50px;
	font-weight: 600;
	color: var(--dark);
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	z-index: 5;
	min-width: 200px;
	text-align: center;
}

.futuristic-label::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 50px;
	background: var(--gradient-1);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
}

.futuristic-label::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50px;
	background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
	transform: translateX(-100%);
	transition: transform 0.6s ease;
	z-index: -1;
}

.timeline-point:hover .futuristic-label,
.timeline-point.active .futuristic-label {
	animation: zoomPulse 0.6s ease-in-out;
}

@keyframes zoomPulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}

	100% {
		transform: scale(1);
	}
}


.timeline-point:hover .timeline-indicator,
.timeline-point.active .timeline-indicator {
	transform: translateX(-50%) scale(1.3);
	background: var(--primary);
	box-shadow: 0 0 15px rgba(122, 78, 47, 0.6);
}

.label-text {
	position: relative;
	z-index: 2;
	font-size: 1.1rem;
	letter-spacing: 0.5px;
}

/* Glowing dot indicator */
.timeline-indicator {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 12px;
	height: 12px;
	background: white;
	border: 2px solid var(--primary);
	border-radius: 50%;
	z-index: 2;
}

.timeline-point.active .timeline-indicator {
	background: var(--primary);
	box-shadow: 0 0 20px rgba(122, 78, 47, 0.5);
}

/* Right Content Area */
.practice-content-area {
	display: grid;
	gap: 2rem;
}

.practice-card-new {
	background: white;
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.practice-card-new::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background: var(--gradient-1);
}

.practice-card-new:hover {
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.practice-header {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.practice-icon-new {
	width: 60px;
	height: 60px;
	background: var(--gradient-2);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
}

.practice-info h3 {
	font-size: 1.5rem;
	color: var(--dark);
	margin-bottom: 0.3rem;
}

.practice-duration {
	font-size: 0.9rem;
	color: var(--primary);
	font-weight: 500;
}

.practice-description {
	color: #666;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.practice-benefits {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.benefit-tag {
	padding: 0.5rem 1rem;
	background: linear-gradient(135deg, rgba(122, 78, 47, 0.12) 0%, rgba(155, 106, 72, 0.1) 100%);
	border-radius: 20px;
	font-size: 0.85rem;
	color: var(--primary);
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.benefit-tag:hover {
	background: linear-gradient(135deg, #c0925f 0%, #7a4e2f 100%);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(122, 78, 47, 0.35);
}

/* Resources Section - New Structure */
#resources {
	padding: 5rem 5%;
	max-width: 1200px;
	margin: 0 auto;
}

.resource-tabs {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
}

.tab-btn {
	padding: 0.8rem 2rem;
	background: white;
	border: 2px solid var(--primary);
	border-radius: 25px;
	color: var(--primary);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
	background: var(--gradient-1);
	color: white;
	border-color: transparent;
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
	animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.resource-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.resource-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.resource-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.resource-image {
	height: 200px;
	background: var(--gradient-2);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.resource-thumbnail {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
	color: transparent;
	position: relative;
	z-index: 1;
}

/* Real thumbnail images */
.morning-meditation {
	background-image: url('images/unsplash-mountain-cloud.avif');
}

.stress-relief {
	background-image: url('images/unsplash-blue-lakeside.avif');
}

.sleep-meditation {
	background-image: url('images/unsplash-mountain-top.avif');
}

.mbsr-course {
	background-image: url('images/unsplash-library-bookshelf.avif');
}

.leadership-course {
	background-image: url('images/unsplash-people-meeting-room.avif');
}

.beginner-course {
	background-image: url('images/unsplash-yoga-session.avif');
}

.timer-tool {
	background-image: url('images/unsplash-meditation-timer.avif');
}

.mood-tracker {
	background-image: url('images/unsplash-mood-tracker.avif');
}

.breathing-tool {
	background-image: url('images/unsplash-breathing-exercise.avif');
}

.resource-thumbnail.resource-photo {
	display: block;
	object-fit: cover;
	object-position: center;
}

.resource-image:has(.resource-photo)::before {
	display: none;
}

/* Deneyim — Eğitim / staj (deneyim bölümünün üstünde) */
.experience-education {
	margin-bottom: 4rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(212, 176, 106, 0.2);
}

.education-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.education-card {
	background: rgba(17, 17, 17, 0.85);
	border: 1px solid rgba(212, 176, 106, 0.18);
	border-radius: 12px;
	padding: 1.5rem 1.75rem;
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.education-card:hover {
	border-color: rgba(212, 176, 106, 0.45);
	transform: translateY(-3px);
}

.education-meta {
	display: block;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.education-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 0.75rem;
}

.education-card p {
	font-size: 0.95rem;
	line-height: 1.65;
	color: rgba(234, 231, 225, 0.82);
}

.resource-image::before {
	content: '';
	position: absolute;
	width: 200%;
	height: 200%;
	background: repeating-linear-gradient(45deg,
			transparent,
			transparent 10px,
			rgba(255, 255, 255, 0.1) 10px,
			rgba(255, 255, 255, 0.1) 20px);
	animation: slide 20s linear infinite;
}

@keyframes slide {
	0% {
		transform: translate(-50%, -50%);
	}

	100% {
		transform: translate(0, 0);
	}
}

.resource-body {
	padding: 1.5rem;
}

.resource-meta {
	display: inline-block;
	margin-bottom: 0.75rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--primary);
}

/* Press Section — Basında Can Aşar */
#press {
	padding: 5rem 5% 4rem;
	width: 100%;
	box-sizing: border-box;
}

#press .section-title {
	padding: 0 0.5rem;
}

.press-slider {
	position: relative;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	box-sizing: border-box;
	background: linear-gradient(135deg, #111111 0%, #1a1814 100%);
	border: 1px solid rgba(212, 176, 106, 0.22);
	border-radius: 24px;
	padding: 1.1rem;
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
	overflow: hidden;
}

.press-viewport {
	width: 100%;
	min-width: 0;
	overflow: hidden;
	border-radius: 16px;
	touch-action: pan-y pinch-zoom;
}

.press-track {
	display: flex;
	width: 100%;
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.press-slide {
	width: 100%;
	min-width: 100%;
	flex: 0 0 100%;
	flex-shrink: 0;
	box-sizing: border-box;
}

.press-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-radius: 14px;
	overflow: hidden;
	background: #070707;
}

.press-card-link:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(212, 176, 106, 0.15);
}

.press-card-link img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: min(520px, 70vh);
	object-fit: contain;
	object-position: center top;
	background: #0a0a0a;
}

.press-caption {
	padding: 1.1rem clamp(0.85rem, 3vw, 1.25rem) 1.25rem;
	border-top: 1px solid rgba(212, 176, 106, 0.18);
	background: linear-gradient(180deg, rgba(17, 17, 17, 0.98) 0%, rgba(10, 10, 10, 1) 100%);
}

.press-source {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 0.45rem;
}

.press-caption h3 {
	font-size: clamp(0.9rem, 2.6vw, 1.05rem);
	font-weight: 600;
	line-height: 1.45;
	color: var(--dark);
	word-wrap: break-word;
	overflow-wrap: anywhere;
}

.press-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid rgba(212, 176, 106, 0.35);
	background: rgba(17, 17, 17, 0.92);
	color: var(--primary);
	font-size: 1.2rem;
	font-weight: 700;
	cursor: pointer;
	z-index: 3;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
	transition: all 0.25s ease;
}

.press-arrow.left {
	left: 0.65rem;
}

.press-arrow.right {
	right: 0.65rem;
}

.press-arrow:hover:not(:disabled) {
	background: var(--primary);
	color: #111111;
	transform: translateY(-50%) scale(1.05);
}

.press-arrow:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.press-meta {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	margin-top: 1.25rem;
	width: 100%;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 0.5rem;
	box-sizing: border-box;
}

.press-indicator {
	min-width: 72px;
	text-align: center;
	color: var(--primary);
	font-weight: 700;
	font-size: 0.9rem;
}

.press-dots {
	display: flex;
	gap: 0.45rem;
	flex-wrap: wrap;
	justify-content: center;
}

.press-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	padding: 0;
	background: rgba(212, 176, 106, 0.28);
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease;
}

.press-dot.active,
.press-dot:hover {
	background: var(--primary);
	transform: scale(1.15);
}

/* Portfolio Section - Modern Slider */
#portfolyo {
	padding: 5.8rem 5% 5rem;
	background: linear-gradient(180deg, rgba(229, 201, 168, 0.35) 0%, rgba(246, 239, 231, 1) 100%);
	min-height: 100vh;
}

.portfolio-container {
	max-width: 1200px;
	margin: 0 auto;
}

.portfolio-slider {
	position: relative;
	background: linear-gradient(135deg, #5d3b28 0%, #8a5a3d 100%);
	border-radius: 24px;
	padding: 1.2rem;
	box-shadow: 0 28px 60px rgba(47, 33, 24, 0.28);
}

.slider-viewport {
	overflow: hidden;
	border-radius: 18px;
}

.slider-track {
	display: flex;
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-slide {
	min-width: 100%;
	padding: 0.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.portfolio-slide img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 700px;
	object-fit: contain;
	border-radius: 16px;
	border: 1px solid rgba(122, 78, 47, 0.24);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
	background: #070707;
}

.slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.9);
	color: var(--primary);
	font-size: 1.3rem;
	font-weight: 700;
	cursor: pointer;
	z-index: 3;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
	transition: all 0.25s ease;
}

.slider-arrow.left {
	left: 0.8rem;
}

.slider-arrow.right {
	right: 0.8rem;
}

.slider-arrow:hover {
	transform: translateY(-50%) scale(1.05);
}

.slider-arrow:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.slider-meta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	margin-top: 1rem;
}

.book-page-indicator {
	min-width: 95px;
	text-align: center;
	color: var(--primary);
	font-weight: 700;
}

.slider-dots {
	display: flex;
	gap: 0.5rem;
}

.slider-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: rgba(122, 78, 47, 0.35);
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
}

.slider-dot.active {
	width: 22px;
	border-radius: 999px;
	background: var(--primary);
}

.portfolio-note {
	margin-top: -1rem;
	color: #6a4a34;
	text-align: center;
}

/* Contact Section – Minimal */
#contact {
	background: #faf7f4;
	padding: 4rem 5% 5rem;
}

.contact-container {
	max-width: 960px;
	margin: 0 auto;
}

.contact-eyebrow {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 0.5rem;
}

.contact-heading {
	font-size: 2rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 2.5rem;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 2.5rem;
	align-items: start;
}

/* Left info column */
.contact-info-col {
	padding-top: 0.4rem;
}

.contact-detail-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
}

.contact-detail-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: #5a4035;
	font-size: 0.9rem;
}

.contact-detail-list svg {
	width: 17px;
	height: 17px;
	flex-shrink: 0;
	color: var(--accent);
}

.contact-detail-list a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s;
}

.contact-detail-list a:hover {
	color: var(--primary);
}

/* Minimal float-label form */
.contact-form-minimal {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.cfm-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.cfm-field {
	position: relative;
}

.cfm-field input,
.cfm-field textarea {
	width: 100%;
	padding: 0.85rem 0.9rem 0.5rem;
	border: 1px solid rgba(122, 78, 47, 0.22);
	border-radius: 10px;
	background: white;
	font-family: inherit;
	font-size: 0.9rem;
	color: var(--dark);
	transition: border-color 0.2s, box-shadow 0.2s;
	resize: none;
}

.cfm-field label {
	position: absolute;
	top: 0.82rem;
	left: 0.9rem;
	font-size: 0.82rem;
	color: #9a7a68;
	pointer-events: none;
	transition: all 0.18s ease;
}

.cfm-field input:focus,
.cfm-field textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(122, 78, 47, 0.09);
}

.cfm-field input:focus ~ label,
.cfm-field input:not(:placeholder-shown) ~ label,
.cfm-field textarea:focus ~ label,
.cfm-field textarea:not(:placeholder-shown) ~ label {
	top: 0.22rem;
	font-size: 0.68rem;
	color: var(--primary);
	font-weight: 600;
}

.cfm-send {
	align-self: flex-end;
	background: var(--dark);
	color: #f6efe7;
	border: none;
	border-radius: 999px;
	padding: 0.7rem 2.2rem;
	font-size: 0.88rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: background 0.2s, transform 0.15s;
}

.cfm-send:hover {
	background: var(--primary);
	transform: translateY(-1px);
}

/* Dark Gold Theme Overrides */
header {
	background: rgba(17, 17, 17, 0.94);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
	border-bottom: 1px solid rgba(212, 176, 106, 0.12);
}

header.scrolled {
	background: rgba(234, 231, 225, 0.96);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

header.scrolled .nav-links a {
	color: #111111;
}

header.scrolled .nav-links a:hover {
	color: #111111;
	background: rgba(255, 255, 255, 0.38);
	border-color: rgba(17, 17, 17, 0.55);
	box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.18);
}

header.scrolled .lang-btn {
	background: rgba(255, 255, 255, 0.45);
	color: #111111;
	border-color: rgba(17, 17, 17, 0.18);
}

header.scrolled .lang-btn:hover,
header.scrolled .lang-btn.active {
	background: rgba(255, 255, 255, 0.7);
	color: #111111;
	border-color: rgba(17, 17, 17, 0.55);
	box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.18);
}

header.scrolled .menu-toggle span {
	background: #111111;
}

.logo-mark {
	border-color: rgba(212, 176, 106, 0.35);
	box-shadow: 0 8px 24px rgba(212, 176, 106, 0.1);
}

.logo-text {
	font-family: 'Space Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: linear-gradient(135deg, #D4B06A 0%, #F0D39A 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

header.scrolled .logo-mark {
	display: none;
}

header.scrolled .logo-mark-scrolled {
	display: block;
}

header.scrolled .logo-text {
	background: none;
	-webkit-text-fill-color: #111111;
	color: #111111;
}

.lang-btn {
	background: #111111;
	color: var(--dark);
	border-color: rgba(212, 176, 106, 0.35);
}

.lang-btn.active,
.lang-btn:hover {
	background: var(--primary);
	color: #070707;
}

.nav-links a {
	color: var(--dark);
}

.nav-links a:hover {
	color: var(--primary);
	background: rgba(212, 176, 106, 0.08);
	border-color: rgba(212, 176, 106, 0.28);
}

.nav-links a.active {
	color: #070707;
	background: var(--primary);
	border-color: var(--primary);
}

.menu-toggle span {
	background: var(--dark);
}

#hero {
	background: linear-gradient(135deg, #070707 0%, #111111 100%);
}

#hero::before {
	background: radial-gradient(circle, rgba(212, 176, 106, 0.12) 0%, transparent 70%);
}

.cta-button {
	background: rgba(17, 17, 17, 0.6);
	color: var(--dark);
	border: 1px solid rgba(212, 176, 106, 0.35);
}

.cta-button:hover {
	background: var(--primary);
	color: #070707;
	box-shadow: 0 15px 40px rgba(212, 176, 106, 0.16);
}

#practices,
#contact,
#portfolyo {
	background: #070707;
}

.section-title,
.contact-heading,
.floating-card h3,
.practice-info h3,
.info-text h4,
.book-page-indicator,
.resource-body h3 {
	color: var(--dark);
}

.section-subtitle,
.floating-card p,
.practice-description,
.practice-duration,
.info-text p,
.contact-detail-list li,
.contact-detail-list a,
.portfolio-note,
.copyright {
	color: rgba(234, 231, 225, 0.72);
}

.floating-card,
.feature-list li,
.practice-card-new,
.resource-card,
.tab-btn,
.futuristic-label,
.portfolio-slider,
.press-slider,
.contact-form-minimal .cfm-field input,
.contact-form-minimal .cfm-field textarea {
	background: #111111;
	border: 1px solid rgba(212, 176, 106, 0.12);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-showcase {
	background: linear-gradient(135deg, rgba(212, 176, 106, 0.05) 0%, rgba(17, 17, 17, 0.94) 100%);
	border: 1px solid rgba(212, 176, 106, 0.1);
}

.feature-showcase::before {
	background: repeating-linear-gradient(45deg,
			transparent,
			transparent 20px,
			rgba(212, 176, 106, 0.03) 20px,
			rgba(212, 176, 106, 0.03) 40px);
}

.feature-list li:hover,
.floating-card:hover,
.practice-card-new:hover,
.resource-card:hover {
	box-shadow: 0 18px 40px rgba(212, 176, 106, 0.08);
}

.feature-check,
.practice-icon-new,
.info-icon {
	background: var(--primary);
	color: #070707;
}

.benefit-tag,
.timeline-indicator,
.tab-btn {
	border-color: rgba(212, 176, 106, 0.35);
}

.benefit-tag {
	background: rgba(212, 176, 106, 0.08);
	color: var(--primary);
}

.benefit-tag:hover,
.tab-btn.active,
.tab-btn:hover,
.cfm-send:hover {
	background: var(--primary);
	color: #070707;
}

.timeline-progress,
.timeline-progress::before,
.practice-card-new::before,
.feature-list li::before,
.slider-dot.active {
	background: var(--primary);
}

.showcase-content h3 {
	background: linear-gradient(135deg, #D4B06A 0%, #F0D39A 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.tab-btn {
	color: var(--dark);
}

.resource-image,
.portfolio-slider {
	background: #111111;
}

.portfolio-slide img {
	border-color: rgba(212, 176, 106, 0.28);
}

.slider-arrow {
	background: rgba(234, 231, 225, 0.92);
	color: #111111;
	border: 1px solid rgba(212, 176, 106, 0.3);
}

.slider-dot {
	background: rgba(212, 176, 106, 0.35);
}

.contact-eyebrow,
.contact-detail-list svg,
.book-page-indicator {
	color: var(--primary);
}

.cfm-field input,
.cfm-field textarea {
	background: #111111;
	color: var(--dark);
	border-color: rgba(212, 176, 106, 0.2);
}

.cfm-field label {
	color: rgba(234, 231, 225, 0.56);
}

.cfm-send {
	background: transparent;
	color: var(--dark);
	border: 1px solid rgba(212, 176, 106, 0.35);
}

footer {
	background: #111111;
	border-top: 1px solid rgba(212, 176, 106, 0.1);
}

.footer-links a {
	color: var(--dark);
}

.footer-links a:hover {
	color: var(--primary);
}

/* Footer */
footer {
	background: #111111;
	color: white;
	padding: 2rem 5%;
	text-align: center;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	justify-content: center;
	gap: 2rem;
	margin-bottom: 1rem;
}

.footer-links a {
	color: white;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--accent);
}

.copyright {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
}

/* SEO Landing Pages */
.landing-page {
	min-height: 100vh;
	padding: 8rem 5% 5rem;
	background: linear-gradient(180deg, #070707 0%, #0e0e0e 100%);
}

.landing-shell {
	max-width: 1200px;
	margin: 0 auto;
}

.landing-eyebrow {
	display: inline-block;
	margin-bottom: 0.9rem;
	color: var(--primary);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.landing-hero {
	max-width: 860px;
	margin-bottom: 3rem;
}

.landing-hero h1 {
	font-size: clamp(2.4rem, 5vw, 4.6rem);
	line-height: 1.05;
	color: var(--dark);
	margin-bottom: 1rem;
}

.landing-hero p {
	font-size: 1.08rem;
	line-height: 1.8;
	color: rgba(234, 231, 225, 0.76);
	max-width: 760px;
}

.landing-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.8rem;
}

.landing-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 1.5rem;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
	border: 1px solid rgba(212, 176, 106, 0.3);
	transition: all 0.25s ease;
}

.landing-button.primary {
	background: var(--primary);
	color: #070707;
}

.landing-button.secondary {
	background: transparent;
	color: var(--dark);
}

.landing-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.landing-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
	margin: 2.5rem 0 3rem;
}

.landing-card {
	background: #111111;
	border: 1px solid rgba(212, 176, 106, 0.12);
	border-radius: 22px;
	padding: 1.6rem;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.landing-card h2 {
	font-size: 1.1rem;
	color: var(--dark);
	margin-bottom: 0.7rem;
}

.landing-card p,
.landing-card li {
	color: rgba(234, 231, 225, 0.74);
	line-height: 1.8;
	font-size: 0.96rem;
}

.landing-list {
	list-style: none;
	display: grid;
	gap: 0.65rem;
	margin-top: 0.6rem;
}

.landing-list li::before {
	content: '•';
	color: var(--primary);
	margin-right: 0.55rem;
}

.landing-cta-box {
	background: linear-gradient(135deg, rgba(212, 176, 106, 0.08), rgba(17, 17, 17, 0.95));
	border: 1px solid rgba(212, 176, 106, 0.14);
	border-radius: 24px;
	padding: 2rem;
}

.landing-cta-box h2 {
	color: var(--dark);
	margin-bottom: 0.7rem;
}

.landing-cta-box p {
	color: rgba(234, 231, 225, 0.74);
	max-width: 760px;
}

@media (min-width: 1024px) {
	.portfolio-container {
		max-width: 1400px;
	}

	.portfolio-slider {
		padding: 1rem;
	}

	.portfolio-slide {
		padding: 0.3rem;
	}

	.portfolio-slide img {
		width: 85%;
		height: auto;
		max-width: 85%;
		max-height: calc(100vh - 170px);
	}
}

@media (max-width: 980px) {
	.landing-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.landing-page {
		padding: 7rem 5% 4rem;
	}

	.landing-actions {
		flex-direction: column;
	}

	.landing-button {
		width: 100%;
	}
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.menu-toggle {
		display: flex;
	}

	.nav-links {
		position: fixed;
		top: 80px;
		right: -100%;
		width: 100%;
		height: calc(100vh - 80px);
		background: rgba(17, 17, 17, 0.98);
		flex-direction: column;
		align-items: center;
		justify-content: start;
		padding-top: 3rem;
		transition: right 0.3s ease;
		gap: 1rem;
		z-index: 999;
	}

	.language-switcher {
		margin-left: 0;
		margin-top: 0.4rem;
	}

	.nav-links.active {
		right: 0;
	}

	.nav-links li {
		width: 80%;
	}

	.nav-links a {
		width: 100%;
		text-align: center;
		padding: 1rem;
		margin: 0;
		display: block;
		box-sizing: border-box;
		color: #EAE7E1;
	}

	header.scrolled .nav-links a {
		color: #EAE7E1;
	}

	header.scrolled .nav-links a:hover {
		color: var(--primary);
		background: rgba(212, 176, 106, 0.08);
		border-color: rgba(212, 176, 106, 0.28);
		box-shadow: none;
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}

	.hero-content p {
		font-size: 1.1rem;
	}

	.hero-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding: 3rem 0;
	}

	.hero-media {
		order: 1;
	}

	.hero-content {
		order: 2;
		max-width: 100%;
		text-align: center;
		padding: 1rem 0 0;
		transform: none;
	}

	.hero-content h1,
	.hero-content p {
		text-align: center;
	}

	.hero-actions {
		justify-content: center;
		width: 100%;
	}

	.hero-actions .cta-button {
		width: 100%;
		max-width: 280px;
		text-align: center;
		box-sizing: border-box;
	}

	.hero-image-frame {
		max-width: 420px;
		transform: none;
	}

	.mandala-bg {
		width: 300px;
		height: 300px;
	}

	.about-content {
		grid-template-columns: 1fr;
	}

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

	.cfm-row {
		grid-template-columns: 1fr;
	}

	.cfm-send {
		align-self: stretch;
	}

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

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

	.journey-path {
		flex-direction: column;
		gap: 2rem;
	}

	.journey-path::before {
		display: none;
	}

	.practice-layout {
		grid-template-columns: 1fr;
	}

	.timeline-track {
		display: none;
	}

	.practice-content-area {
		gap: 1.5rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.footer-links {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	#press {
		padding: 3.5rem 4% 2.5rem;
	}

	.press-slider {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		gap: 0.65rem;
		padding: 0.75rem 0.65rem 0.85rem;
		border-radius: 18px;
	}

	.press-viewport {
		flex: 1 1 100%;
		order: 1;
		width: 100%;
		border-radius: 12px;
	}

	.press-arrow {
		position: static;
		transform: none;
		flex: 0 0 auto;
		order: 2;
		width: 44px;
		height: 44px;
		margin: 0;
	}

	.press-arrow:hover:not(:disabled) {
		transform: scale(1.05);
	}

	.press-arrow.left {
		left: auto;
		margin-right: 0.35rem;
	}

	.press-arrow.right {
		right: auto;
		margin-left: 0.35rem;
	}

	.press-card-link:hover {
		transform: none;
	}

	.press-card-link img {
		max-height: min(340px, 52vh);
	}

	.press-caption {
		padding: 0.9rem 1rem 1rem;
	}

	.press-caption h3 {
		font-size: 0.92rem;
	}

	.press-meta {
		margin-top: 1rem;
	}
}

@media (max-width: 480px) {
	.hero-content h1 {
		font-size: 2rem;
	}

	.hero-layout {
		width: min(100%, 92%);
		gap: 1.4rem;
	}

	.hero-image-frame {
		padding: 10px;
		border-radius: 24px;
	}

	.stats-counter {
		grid-template-columns: 1fr;
	}

	.stat-item::after {
		display: none;
	}

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

	.resource-tabs {
		flex-direction: column;
	}

	.tab-btn {
		width: 100%;
	}

	.book-pages {
		height: auto;
	}

	.portfolio-slider {
		padding: 0.8rem;
	}

	.portfolio-slide img {
		width: auto;
		height: auto;
		max-width: 100%;
		max-height: calc(100svh - 220px);
	}

	.slider-arrow {
		width: 40px;
		height: 40px;
	}

	#press {
		padding: 3rem 3.5% 2rem;
	}

	#press .section-title {
		font-size: 1.75rem;
	}

	.press-slider {
		padding: 0.6rem 0.5rem 0.75rem;
		border-radius: 14px;
	}

	.press-arrow {
		width: 40px;
		height: 40px;
		font-size: 0.95rem;
	}

	.press-card-link img {
		max-height: min(260px, 45vh);
	}

	.press-source {
		font-size: 0.65rem;
		letter-spacing: 0.1em;
	}

	.press-caption h3 {
		font-size: 0.85rem;
		line-height: 1.4;
	}

	.press-dot {
		width: 9px;
		height: 9px;
	}
}

@media (max-width: 360px) {
	.press-card-link img {
		max-height: min(220px, 40vh);
	}

	.press-caption h3 {
		font-size: 0.8rem;
	}
}